2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2025-01-22 22:58:33 +00:00
nativefier/package.json

87 lines
2.4 KiB
JSON
Raw Permalink Normal View History

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