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",
|
2017-08-01 16:07:51 -04:00
|
|
|
"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",
|
2016-11-07 13:57:41 -08:00
|
|
|
"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": {
|
2015-05-10 13:55:44 -07:00
|
|
|
"home-path": "^0.1.1",
|
2016-09-10 08:59:40 -07:00
|
|
|
"path-exists": "^2.0.0",
|
2017-08-01 16:07:51 -04:00
|
|
|
"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-13 17:09:21 -04:00
|
|
|
}
|
2017-07-06 14:31:02 -04:00
|
|
|
}
|