mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 04:47:54 +00:00
106 lines
3.0 KiB
JSON
106 lines
3.0 KiB
JSON
{
|
|
"name": "nativefier",
|
|
"version": "7.6.11",
|
|
"description": "Wrap web apps natively",
|
|
"keywords": [
|
|
"desktop",
|
|
"electron",
|
|
"app",
|
|
"native",
|
|
"wrapper"
|
|
],
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"dev-up": "npm install && (cd ./app && npm install) && npm run build",
|
|
"dev-up-win": "npm install & cd app & npm install & cd .. & npm run build",
|
|
"test": "jest src",
|
|
"guard": "jest --watch src",
|
|
"e2e": "jest e2e",
|
|
"tdd": "gulp tdd",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"ci": "npm run lint && npm test && npm run e2e",
|
|
"clean": "gulp clean",
|
|
"build": "gulp build",
|
|
"watch": "while true ; do gulp watch ; done",
|
|
"package-placeholder": "npm run build && node lib/cli.js http://www.bennish.net/web-notifications.html ~/Desktop --overwrite --name notification-test --icon ./test-resources/iconSampleGrey.png --inject ./test-resources/test-injection.js --inject ./test-resources/test-injection.css && open ~/Desktop/notification-test-darwin-x64/notification-test.app",
|
|
"start-placeholder": "npm run build && electron app",
|
|
"changelog": "./scripts/changelog",
|
|
"format": "prettier --write '{gulp,src}/**/*.js' 'app/src/**/*.js'"
|
|
},
|
|
"bin": {
|
|
"nativefier": "lib/cli.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jiahaog/nativefier.git"
|
|
},
|
|
"author": "Goh Jia Hao",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/jiahaog/nativefier/issues"
|
|
},
|
|
"homepage": "https://github.com/jiahaog/nativefier#readme",
|
|
"dependencies": {
|
|
"async": "^2.6.0",
|
|
"axios": "^0.18.0",
|
|
"babel-polyfill": "^6.26.0",
|
|
"cheerio": "^1.0.0-rc.2",
|
|
"commander": "^2.14.0",
|
|
"electron-packager": "^12.0.1",
|
|
"gitcloud": "^0.1.0",
|
|
"hasbin": "^1.2.3",
|
|
"lodash": "^4.17.5",
|
|
"loglevel": "^1.6.1",
|
|
"ncp": "^2.0.0",
|
|
"page-icon": "^0.3.0",
|
|
"progress": "^2.0.0",
|
|
"sanitize-filename": "^1.6.1",
|
|
"shelljs": "^0.8.1",
|
|
"source-map-support": "^0.5.3",
|
|
"tmp": "0.0.33",
|
|
"validator": "^10.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.0",
|
|
"babel-jest": "^23.4.0",
|
|
"babel-loader": "^7.1.2",
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
|
"babel-preset-env": "^1.6.1",
|
|
"babel-register": "^6.26.0",
|
|
"chai": "^4.1.2",
|
|
"del": "^3.0.0",
|
|
"eslint": "^5.2.0",
|
|
"eslint-config-airbnb-base": "^13.0.0",
|
|
"eslint-config-prettier": "^4.0.0",
|
|
"eslint-plugin-import": "^2.8.0",
|
|
"eslint-plugin-prettier": "^3.0.0",
|
|
"gulp": "^3.9.1",
|
|
"gulp-babel": "^7.0.1",
|
|
"gulp-sourcemaps": "^2.6.4",
|
|
"jest": "^23.4.1",
|
|
"prettier": "^1.12.1",
|
|
"require-dir": "^1.0.0",
|
|
"run-sequence": "^2.2.1",
|
|
"webpack-stream": "^5.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 4.0"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-object-rest-spread"
|
|
],
|
|
"presets": [
|
|
[
|
|
"env",
|
|
{
|
|
"targets": {
|
|
"node": "4.0.0"
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|