Nativefier/package.json

83 lines
2.3 KiB
JSON
Raw Normal View History

2015-03-23 03:51:19 +01:00
{
2015-07-05 08:46:06 +02:00
"name": "nativefier",
2017-04-06 19:13:58 +02:00
"version": "7.1.0",
"description": "Wrap web apps natively",
2016-01-19 11:04:36 +01:00
"keywords": [
"desktop",
"electron",
"app",
"native",
"wrapper"
],
"main": "lib/index.js",
"scripts": {
"dev-up": "npm install && (cd app && npm install) && npm run build",
2016-01-23 19:02:23 +01:00
"test": "gulp test",
"lint": "eslint .",
"ci": "gulp test && npm run lint",
2016-01-23 09:01:58 +01:00
"clean": "gulp clean",
"build": "gulp build",
2016-01-23 05:29:40 +01:00
"watch": "while true ; do gulp watch ; done",
2016-02-25 07:56:32 +01: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",
"start-placeholder": "npm run build && electron app",
2016-01-23 09:01:58 +01:00
"release": "gulp release"
2015-03-23 03:51:19 +01:00
},
2016-01-18 15:07:22 +01:00
"bin": {
"nativefier": "lib/cli.js"
},
2015-03-23 03:51:19 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/jiahaog/nativefier.git"
2015-03-23 03:51:19 +01:00
},
"author": "",
"license": "MIT",
2015-03-23 03:51:19 +01:00
"bugs": {
"url": "https://github.com/jiahaog/nativefier/issues"
2015-03-23 03:51:19 +01:00
},
"homepage": "https://github.com/jiahaog/nativefier#readme",
2015-03-23 03:51:19 +01:00
"dependencies": {
"async": "^1.5.2",
2016-05-26 17:05:56 +02:00
"axios": "^0.11.1",
2016-03-11 18:36:18 +01:00
"babel-polyfill": "^6.7.2",
2016-05-26 17:06:11 +02:00
"cheerio": "^0.20.0",
"commander": "^2.9.0",
2016-05-13 06:50:40 +02:00
"electron-packager": "^7.0.1",
2016-03-11 18:36:18 +01:00
"gitcloud": "^0.1.0",
"hasbin": "^1.2.0",
"lodash": "^4.0.0",
2016-03-25 13:50:52 +01:00
"loglevel": "^1.4.0",
2015-03-23 03:51:19 +01:00
"ncp": "^2.0.0",
"page-icon": "^0.3.0",
2016-03-12 08:46:07 +01:00
"progress": "^1.1.8",
"request": "^2.67.0",
"sanitize-filename": "^1.5.3",
2016-05-26 17:07:15 +02:00
"shelljs": "^0.7.0",
2016-01-24 14:07:22 +01:00
"source-map-support": "^0.4.0",
2016-01-18 16:56:59 +01:00
"tmp": "0.0.28",
2016-05-26 17:07:23 +02:00
"validator": "^5.2.0"
2015-04-05 06:19:53 +02:00
},
"babel": {
"presets": [
"es2015"
2015-06-28 03:07:42 +02:00
]
2015-07-05 09:24:36 +02:00
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.6.0",
"chai": "^3.4.1",
2016-01-23 04:47:28 +01:00
"del": "^2.2.0",
"eslint": "^2.10.2",
2016-05-26 17:05:44 +02:00
"eslint-config-google": "^0.5.0",
2016-01-23 04:47:28 +01:00
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
2016-02-01 08:23:29 +01:00
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
2016-01-23 04:47:28 +01:00
"gulp-sourcemaps": "^1.6.0",
2016-02-27 17:45:44 +01:00
"require-dir": "^0.3.0",
2016-01-23 04:47:28 +01:00
"run-sequence": "^1.1.5",
"webpack-stream": "^3.1.0"
}
2015-03-23 03:51:19 +01:00
}