nativefier/package.json

106 lines
3.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",
2020-01-24 01:00:43 +00:00
"version": "7.7.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",
"dev-up-win": "npm install & cd app & npm install & cd .. & npm run build",
2018-05-24 07:12:22 +00:00
"test": "jest src",
"guard": "jest --watch src",
2018-05-24 07:12:22 +00:00
"e2e": "jest e2e",
"tdd": "gulp tdd",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
2018-05-24 07:12:22 +00:00
"ci": "npm run lint && npm test && npm run e2e",
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-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",
"start-placeholder": "npm run build && electron app",
2018-05-24 07:02:44 +00:00
"changelog": "./scripts/changelog",
"format": "prettier --write '{gulp,src}/**/*.js' 'app/src/**/*.js'"
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": "Goh Jia Hao",
"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": "^2.6.0",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"commander": "^2.14.0",
"electron-packager": "^12.2.0",
2016-03-11 17:36:18 +00:00
"gitcloud": "^0.1.0",
"hasbin": "^1.2.3",
"lodash": "^4.17.5",
"loglevel": "^1.6.1",
2015-03-23 02:51:19 +00:00
"ncp": "^2.0.0",
"page-icon": "^0.3.0",
"progress": "^2.0.0",
"sanitize-filename": "^1.6.1",
"shelljs": "^0.8.1",
"source-map-support": "^0.5.3",
"tmp": "0.0.33",
"validator": "^10.2.0"
2015-04-05 04:19:53 +00:00
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^23.4.0",
"babel-loader": "^7.1.2",
2018-05-25 05:23:43 +00:00
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"del": "^3.0.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
2019-02-10 02:46:15 +00:00
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-sourcemaps": "^2.6.4",
"jest": "^23.4.1",
2018-05-24 07:02:44 +00:00
"prettier": "^1.12.1",
"require-dir": "^1.0.0",
"run-sequence": "^2.2.1",
"webpack-stream": "^5.0.0"
},
"engines": {
"node": ">= 4.0"
},
"babel": {
2018-05-25 05:23:43 +00:00
"plugins": [
"transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"node": "4.0.0"
}
}
]
]
}
2015-03-23 02:51:19 +00:00
}