2015-03-22 19:51:19 -07:00
|
|
|
{
|
2015-07-05 14:46:06 +08:00
|
|
|
"name": "nativefier",
|
2019-08-22 21:55:30 +02:00
|
|
|
"version": "7.7.0",
|
2016-01-18 21:45:18 +08:00
|
|
|
"description": "Wrap web apps natively",
|
2016-01-19 18:04:36 +08:00
|
|
|
"keywords": [
|
|
|
|
"desktop",
|
|
|
|
"electron",
|
|
|
|
"app",
|
|
|
|
"native",
|
|
|
|
"wrapper"
|
|
|
|
],
|
2016-01-24 20:40:32 +08:00
|
|
|
"main": "lib/index.js",
|
2016-01-18 21:45:18 +08:00
|
|
|
"scripts": {
|
2017-08-15 13:18:44 -05:00
|
|
|
"dev-up": "npm install && (cd ./app && npm install) && npm run build",
|
2017-11-14 08:05:01 -05:00
|
|
|
"dev-up-win": "npm install & cd app & npm install & cd .. & npm run build",
|
2018-05-24 00:12:22 -07:00
|
|
|
"test": "jest src",
|
2018-06-10 10:52:42 -07:00
|
|
|
"guard": "jest --watch src",
|
2018-05-24 00:12:22 -07:00
|
|
|
"e2e": "jest e2e",
|
2017-04-25 16:04:57 +01:00
|
|
|
"tdd": "gulp tdd",
|
2016-05-27 02:23:37 +08:00
|
|
|
"lint": "eslint .",
|
2017-04-29 22:52:12 +08:00
|
|
|
"lint:fix": "eslint . --fix",
|
2018-05-24 00:12:22 -07:00
|
|
|
"ci": "npm run lint && npm test && npm run e2e",
|
2016-01-23 16:01:58 +08:00
|
|
|
"clean": "gulp clean",
|
2016-01-23 12:42:09 +08:00
|
|
|
"build": "gulp build",
|
2016-01-23 12:29:40 +08:00
|
|
|
"watch": "while true ; do gulp watch ; done",
|
2016-02-25 14:56:32 +08:00
|
|
|
"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",
|
2016-01-22 18:03:35 +08:00
|
|
|
"start-placeholder": "npm run build && electron app",
|
2018-05-24 00:02:44 -07:00
|
|
|
"changelog": "./scripts/changelog",
|
|
|
|
"format": "prettier --write '{gulp,src}/**/*.js' 'app/src/**/*.js'"
|
2015-03-22 19:51:19 -07:00
|
|
|
},
|
2016-01-18 22:07:22 +08:00
|
|
|
"bin": {
|
|
|
|
"nativefier": "lib/cli.js"
|
|
|
|
},
|
2015-03-22 19:51:19 -07:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-01-18 21:45:18 +08:00
|
|
|
"url": "git+https://github.com/jiahaog/nativefier.git"
|
2015-03-22 19:51:19 -07:00
|
|
|
},
|
2017-05-07 15:49:15 +08:00
|
|
|
"author": "Goh Jia Hao",
|
2016-01-18 21:45:18 +08:00
|
|
|
"license": "MIT",
|
2015-03-22 19:51:19 -07:00
|
|
|
"bugs": {
|
2016-01-18 21:45:18 +08:00
|
|
|
"url": "https://github.com/jiahaog/nativefier/issues"
|
2015-03-22 19:51:19 -07:00
|
|
|
},
|
2016-01-18 21:45:18 +08:00
|
|
|
"homepage": "https://github.com/jiahaog/nativefier#readme",
|
2015-03-22 19:51:19 -07:00
|
|
|
"dependencies": {
|
2017-11-14 08:05:01 -05:00
|
|
|
"async": "^2.6.0",
|
2018-03-16 17:54:19 -04:00
|
|
|
"axios": "^0.18.0",
|
2017-11-14 08:05:01 -05:00
|
|
|
"babel-polyfill": "^6.26.0",
|
|
|
|
"cheerio": "^1.0.0-rc.2",
|
2018-02-06 21:56:39 -05:00
|
|
|
"commander": "^2.14.0",
|
2019-08-22 15:05:39 -04:00
|
|
|
"electron-packager": "^12.2.0",
|
2016-03-12 01:36:18 +08:00
|
|
|
"gitcloud": "^0.1.0",
|
2017-11-14 08:05:01 -05:00
|
|
|
"hasbin": "^1.2.3",
|
2018-02-06 21:56:39 -05:00
|
|
|
"lodash": "^4.17.5",
|
|
|
|
"loglevel": "^1.6.1",
|
2015-03-22 19:51:19 -07:00
|
|
|
"ncp": "^2.0.0",
|
2016-03-14 12:28:14 +08:00
|
|
|
"page-icon": "^0.3.0",
|
2017-04-18 17:30:54 -04:00
|
|
|
"progress": "^2.0.0",
|
2017-11-14 08:05:01 -05:00
|
|
|
"sanitize-filename": "^1.6.1",
|
2018-02-06 21:56:39 -05:00
|
|
|
"shelljs": "^0.8.1",
|
|
|
|
"source-map-support": "^0.5.3",
|
2017-11-14 08:05:01 -05:00
|
|
|
"tmp": "0.0.33",
|
2018-05-16 15:32:27 -04:00
|
|
|
"validator": "^10.2.0"
|
2015-04-04 21:19:53 -07:00
|
|
|
},
|
2016-01-18 21:45:18 +08:00
|
|
|
"devDependencies": {
|
2017-11-14 08:05:01 -05:00
|
|
|
"babel-core": "^6.26.0",
|
2018-07-21 08:45:01 -04:00
|
|
|
"babel-jest": "^23.4.0",
|
2017-11-14 08:05:01 -05:00
|
|
|
"babel-loader": "^7.1.2",
|
2018-05-24 22:23:43 -07:00
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
2017-11-14 08:05:01 -05:00
|
|
|
"babel-preset-env": "^1.6.1",
|
|
|
|
"babel-register": "^6.26.0",
|
|
|
|
"chai": "^4.1.2",
|
|
|
|
"del": "^3.0.0",
|
2018-07-21 08:45:01 -04:00
|
|
|
"eslint": "^5.2.0",
|
|
|
|
"eslint-config-airbnb-base": "^13.0.0",
|
2019-02-09 21:46:15 -05:00
|
|
|
"eslint-config-prettier": "^4.0.0",
|
2017-11-14 08:05:01 -05:00
|
|
|
"eslint-plugin-import": "^2.8.0",
|
2018-10-06 22:13:39 -04:00
|
|
|
"eslint-plugin-prettier": "^3.0.0",
|
2017-11-14 08:05:01 -05:00
|
|
|
"gulp": "^3.9.1",
|
2018-02-06 21:56:39 -05:00
|
|
|
"gulp-babel": "^7.0.1",
|
|
|
|
"gulp-sourcemaps": "^2.6.4",
|
2018-07-21 08:45:01 -04:00
|
|
|
"jest": "^23.4.1",
|
2018-05-24 00:02:44 -07:00
|
|
|
"prettier": "^1.12.1",
|
2018-03-16 17:54:19 -04:00
|
|
|
"require-dir": "^1.0.0",
|
2018-02-06 21:56:39 -05:00
|
|
|
"run-sequence": "^2.2.1",
|
2018-07-21 08:45:01 -04:00
|
|
|
"webpack-stream": "^5.0.0"
|
2017-04-18 17:30:54 -04:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 4.0"
|
2017-05-07 15:49:15 +08:00
|
|
|
},
|
|
|
|
"babel": {
|
2018-05-24 22:23:43 -07:00
|
|
|
"plugins": [
|
|
|
|
"transform-object-rest-spread"
|
|
|
|
],
|
2017-05-07 15:49:15 +08:00
|
|
|
"presets": [
|
2017-11-14 08:05:01 -05:00
|
|
|
[
|
|
|
|
"env",
|
|
|
|
{
|
|
|
|
"targets": {
|
|
|
|
"node": "4.0.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2017-05-07 15:49:15 +08:00
|
|
|
]
|
2016-01-18 21:45:18 +08:00
|
|
|
}
|
2015-03-22 19:51:19 -07:00
|
|
|
}
|