electron/npm/package.json

27 lines
539 B
JSON
Raw Normal View History

2014-10-20 04:17:38 +00:00
{
"scripts": {
2015-05-12 23:10:22 +00:00
"cache-clean": "rm -rf ~/.electron && rm -rf dist",
"postinstall": "node install.js",
2017-07-18 17:38:57 +00:00
"pretest": "npm run cache-clean",
"test": "standard"
2014-10-20 04:17:38 +00:00
},
"bin": {
2015-04-23 19:37:31 +00:00
"electron": "cli.js"
2014-10-20 04:17:38 +00:00
},
2014-10-20 04:56:49 +00:00
"main": "index.js",
"types": "electron.d.ts",
2014-10-20 04:17:38 +00:00
"dependencies": {
2017-08-22 18:01:40 +00:00
"@types/node": "^8.0.24",
2017-05-11 06:38:51 +00:00
"electron-download": "^3.0.1",
"extract-zip": "^1.0.3"
2014-10-20 04:17:38 +00:00
},
2014-10-20 05:56:57 +00:00
"devDependencies": {
"home-path": "^0.1.1",
"path-exists": "^2.0.0",
"standard": "^5.4.1"
2014-10-20 05:56:57 +00:00
},
2016-02-27 20:29:07 +00:00
"directories": {
"test": "test"
}
2017-07-06 18:31:02 +00:00
}