electron/npm/package.json

27 lines
539 B
JSON
Raw Normal View History

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