nativefier/package.json

76 lines
2.0 KiB
JSON
Raw Normal View History

2015-03-23 02:51:19 +00:00
{
2015-07-05 06:46:06 +00:00
"name": "nativefier",
2016-01-25 02:33:55 +00:00
"version": "6.6.1",
"description": "Wrap web apps natively",
2016-01-19 10:04:36 +00: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 18:02:23 +00:00
"test": "gulp test",
"lint": "gulp lint",
"ci": "gulp ci",
2016-01-23 08:01:58 +00:00
"clean": "gulp clean",
"build": "gulp build",
2016-01-23 04:29:40 +00:00
"watch": "while true ; do gulp watch ; done",
2016-01-23 18:02:23 +00:00
"package-placeholder": "npm run build && node lib/cli.js http://www.bennish.net/web-notifications.html ~/Desktop --overwrite --app-name notification-test && open ~/Desktop/notification-test-darwin-x64/notification-test.app",
"start-placeholder": "npm run build && electron app",
2016-01-23 08:01:58 +00:00
"release": "gulp release"
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",
"url": "git+https://github.com/jiahaog/nativefier.git"
2015-03-23 02:51:19 +00:00
},
"author": "",
"license": "MIT",
2015-03-23 02:51:19 +00:00
"bugs": {
"url": "https://github.com/jiahaog/nativefier/issues"
2015-03-23 02:51:19 +00:00
},
"homepage": "https://github.com/jiahaog/nativefier#readme",
2015-03-23 02:51:19 +00:00
"dependencies": {
"async": "^1.5.2",
"cheerio": "^0.19.0",
"commander": "^2.9.0",
"electron-packager": "^5.2.1",
"lodash": "^4.0.0",
2015-03-23 02:51:19 +00:00
"ncp": "^2.0.0",
"request": "^2.67.0",
2016-01-24 13:07:22 +00:00
"source-map-support": "^0.4.0",
2016-01-18 15:56:59 +00:00
"tmp": "0.0.28",
"validator": "^4.5.0"
2015-04-05 04:19:53 +00:00
},
"babel": {
"presets": [
"es2015"
2015-06-28 01:07:42 +00:00
]
2015-07-05 07:24:36 +00:00
},
"devDependencies": {
"async": "^1.5.2",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
2016-01-21 04:26:05 +00:00
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.4.1",
2016-01-23 03:47:28 +00:00
"del": "^2.2.0",
"electron-prebuilt": "^0.36.5",
2016-01-23 18:02:23 +00:00
"eslint-config-google": "^0.3.0",
2016-01-23 03:47:28 +00:00
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
2016-01-23 18:02:23 +00:00
"gulp-eslint": "^1.1.1",
"gulp-mocha": "^2.2.0",
2016-01-23 03:47:28 +00:00
"gulp-sourcemaps": "^1.6.0",
"lodash": "^4.0.0",
2016-01-23 03:47:28 +00:00
"run-sequence": "^1.1.5",
"tmp": "0.0.28",
2016-01-23 03:47:28 +00:00
"webpack-stream": "^3.1.0"
}
2015-03-23 02:51:19 +00:00
}