electron/npm/package.json

33 lines
820 B
JSON
Raw Normal View History

2014-10-20 13:17:38 +09:00
{
2016-07-25 12:15:21 -07:00
"name": "electron",
2016-07-26 22:47:36 -07:00
"version": "1.3.1",
2016-07-25 12:48:20 -07:00
"description": "Install prebuilt electron binaries for the command-line using npm",
"repository": "https://github.com/electron-userland/electron-prebuilt",
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",
"pretest": "npm run cache-clean && node install.js",
2015-11-30 12:00:54 -08:00
"test": "standard && tape test/*.js"
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",
2014-10-20 13:17:38 +09:00
"dependencies": {
"extract-zip": "^1.0.3",
2016-03-03 18:09:02 -08:00
"electron-download": "^2.0.0"
2014-10-20 13:17:38 +09:00
},
2014-10-20 14:56:57 +09:00
"devDependencies": {
"home-path": "^0.1.1",
"path-exists": "^1.0.0",
2015-11-30 12:00:54 -08:00
"standard": "^5.4.1",
2014-10-20 14:56:57 +09:00
"tape": "^3.0.1"
},
2014-10-20 13:17:38 +09:00
"author": "Mathias Buus",
2014-10-20 13:26:56 +09:00
"license": "MIT",
2016-02-27 12:29:07 -08:00
"directories": {
"test": "test"
},
2016-07-25 12:48:20 -07:00
"keywords": ["electron"]
2016-07-25 12:15:21 -07:00
}