2015-03-23 02:51:19 +00:00
|
|
|
{
|
2015-07-05 06:46:06 +00:00
|
|
|
"name": "nativefier",
|
2017-11-12 16:19:46 +00:00
|
|
|
"version": "7.5.1",
|
2016-01-18 13:45:18 +00:00
|
|
|
"description": "Wrap web apps natively",
|
2016-01-19 10:04:36 +00:00
|
|
|
"keywords": [
|
|
|
|
"desktop",
|
|
|
|
"electron",
|
|
|
|
"app",
|
|
|
|
"native",
|
|
|
|
"wrapper"
|
|
|
|
],
|
2016-01-24 12:40:32 +00:00
|
|
|
"main": "lib/index.js",
|
2016-01-18 13:45:18 +00:00
|
|
|
"scripts": {
|
2017-08-15 18:18:44 +00:00
|
|
|
"dev-up": "npm install && (cd ./app && npm install) && npm run build",
|
2017-05-07 07:49:15 +00:00
|
|
|
"test": "jest && gulp test",
|
|
|
|
"jest": "jest",
|
2017-04-25 15:04:57 +00:00
|
|
|
"tdd": "gulp tdd",
|
2016-05-26 18:23:37 +00:00
|
|
|
"lint": "eslint .",
|
2017-04-29 14:52:12 +00:00
|
|
|
"lint:fix": "eslint . --fix",
|
2017-04-25 15:04:57 +00:00
|
|
|
"ci": "gulp build test && npm run lint",
|
2016-01-23 08:01:58 +00:00
|
|
|
"clean": "gulp clean",
|
2016-01-23 04:42:09 +00:00
|
|
|
"build": "gulp build",
|
2016-01-23 04:29:40 +00:00
|
|
|
"watch": "while true ; do gulp watch ; done",
|
2016-02-25 06:56:32 +00: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 10:03:35 +00:00
|
|
|
"start-placeholder": "npm run build && electron app",
|
2017-04-29 18:39:08 +00:00
|
|
|
"changelog": "./scripts/changelog"
|
2015-03-23 02:51:19 +00:00
|
|
|
},
|
2016-01-18 14:07:22 +00:00
|
|
|
"bin": {
|
|
|
|
"nativefier": "lib/cli.js"
|
|
|
|
},
|
2015-03-23 02:51:19 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-01-18 13:45:18 +00:00
|
|
|
"url": "git+https://github.com/jiahaog/nativefier.git"
|
2015-03-23 02:51:19 +00:00
|
|
|
},
|
2017-05-07 07:49:15 +00:00
|
|
|
"author": "Goh Jia Hao",
|
2016-01-18 13:45:18 +00:00
|
|
|
"license": "MIT",
|
2015-03-23 02:51:19 +00:00
|
|
|
"bugs": {
|
2016-01-18 13:45:18 +00:00
|
|
|
"url": "https://github.com/jiahaog/nativefier/issues"
|
2015-03-23 02:51:19 +00:00
|
|
|
},
|
2016-01-18 13:45:18 +00:00
|
|
|
"homepage": "https://github.com/jiahaog/nativefier#readme",
|
2015-03-23 02:51:19 +00:00
|
|
|
"dependencies": {
|
2017-04-18 21:30:54 +00:00
|
|
|
"async": "^2.3.0",
|
|
|
|
"axios": "^0.16.1",
|
2016-03-11 17:36:18 +00:00
|
|
|
"babel-polyfill": "^6.7.2",
|
2017-04-18 21:30:54 +00:00
|
|
|
"cheerio": "^0.22.0",
|
2016-01-18 13:45:18 +00:00
|
|
|
"commander": "^2.9.0",
|
2017-04-18 21:30:54 +00:00
|
|
|
"electron-packager": "^8.6.0",
|
2016-03-11 17:36:18 +00:00
|
|
|
"gitcloud": "^0.1.0",
|
2016-01-28 15:02:42 +00:00
|
|
|
"hasbin": "^1.2.0",
|
2016-01-19 13:19:09 +00:00
|
|
|
"lodash": "^4.0.0",
|
2016-03-25 12:50:52 +00:00
|
|
|
"loglevel": "^1.4.0",
|
2015-03-23 02:51:19 +00:00
|
|
|
"ncp": "^2.0.0",
|
2016-03-14 04:28:14 +00:00
|
|
|
"page-icon": "^0.3.0",
|
2017-04-18 21:30:54 +00:00
|
|
|
"progress": "^2.0.0",
|
2016-01-26 01:51:39 +00:00
|
|
|
"sanitize-filename": "^1.5.3",
|
2016-05-26 15:07:15 +00:00
|
|
|
"shelljs": "^0.7.0",
|
2016-01-24 13:07:22 +00:00
|
|
|
"source-map-support": "^0.4.0",
|
2017-04-18 21:30:54 +00:00
|
|
|
"tmp": "0.0.31",
|
|
|
|
"validator": "^7.0.0"
|
2015-04-05 04:19:53 +00:00
|
|
|
},
|
2016-01-18 13:45:18 +00:00
|
|
|
"devDependencies": {
|
2016-01-23 04:42:09 +00:00
|
|
|
"babel-core": "^6.4.5",
|
2017-05-07 07:49:15 +00:00
|
|
|
"babel-jest": "^19.0.0",
|
2016-01-23 04:42:09 +00:00
|
|
|
"babel-loader": "^6.2.1",
|
2016-03-11 05:47:00 +00:00
|
|
|
"babel-preset-es2015": "^6.6.0",
|
|
|
|
"babel-register": "^6.6.0",
|
2016-01-24 17:10:28 +00:00
|
|
|
"chai": "^3.4.1",
|
2016-01-23 03:47:28 +00:00
|
|
|
"del": "^2.2.0",
|
2017-04-29 14:52:12 +00:00
|
|
|
"eslint": "^3.19.0",
|
|
|
|
"eslint-config-airbnb-base": "^11.1.3",
|
|
|
|
"eslint-plugin-import": "^2.2.0",
|
2016-01-23 03:47:28 +00:00
|
|
|
"gulp": "^3.9.0",
|
|
|
|
"gulp-babel": "^6.1.1",
|
2017-04-18 21:30:54 +00:00
|
|
|
"gulp-istanbul": "^1.1.1",
|
|
|
|
"gulp-mocha": "^4.3.0",
|
|
|
|
"gulp-sourcemaps": "^2.6.0",
|
2017-04-25 15:04:57 +00:00
|
|
|
"isparta": "^4.0.0",
|
2017-05-19 12:50:09 +00:00
|
|
|
"jest": "^20.0.3",
|
2017-05-07 07:49:15 +00:00
|
|
|
"regenerator-runtime": "^0.10.5",
|
2017-06-29 16:22:23 +00:00
|
|
|
"require-dir": "^0.3.2",
|
2016-01-23 03:47:28 +00:00
|
|
|
"run-sequence": "^1.1.5",
|
|
|
|
"webpack-stream": "^3.1.0"
|
2017-04-18 21:30:54 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 4.0"
|
2017-05-07 07:49:15 +00:00
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"es2015"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"jest": {
|
2017-05-19 12:50:09 +00:00
|
|
|
"testMatch": [
|
|
|
|
"**/src/**/?(*.)(spec|test).js?(x)"
|
|
|
|
]
|
2016-01-18 13:45:18 +00:00
|
|
|
}
|
2015-03-23 02:51:19 +00:00
|
|
|
}
|