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",
|
2017-08-01 20:07:51 +00:00
|
|
|
"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",
|
2016-11-07 21:57:41 +00:00
|
|
|
"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-11-03 14:45:09 +00:00
|
|
|
"electron-download": "^3.0.1",
|
2017-05-11 06:38:51 +00:00
|
|
|
"extract-zip": "^1.0.3"
|
2014-10-20 04:17:38 +00:00
|
|
|
},
|
2014-10-20 05:56:57 +00:00
|
|
|
"devDependencies": {
|
2015-05-10 20:55:44 +00:00
|
|
|
"home-path": "^0.1.1",
|
2016-09-10 15:59:40 +00:00
|
|
|
"path-exists": "^2.0.0",
|
2017-08-01 20:07:51 +00:00
|
|
|
"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-13 21:09:21 +00:00
|
|
|
}
|
2017-07-06 18:31:02 +00:00
|
|
|
}
|