electron/npm/package.json

35 lines
841 B
JSON
Raw Normal View History

2014-10-20 04:17:38 +00:00
{
2016-07-25 19:15:21 +00:00
"name": "electron",
2016-09-22 11:25:46 +00:00
"version": "1.4.1",
2016-07-25 19:48:20 +00:00
"description": "Install prebuilt electron binaries for the command-line using npm",
"repository": "https://github.com/electron-userland/electron-prebuilt",
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",
"pretest": "npm run cache-clean && npm --silent run postinstall",
"test": "tape test/*.js && 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",
2014-10-20 04:17:38 +00:00
"dependencies": {
"extract-zip": "^1.0.3",
2016-09-27 22:14:42 +00:00
"electron-download": "^3.0.1"
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",
2015-11-30 20:00:54 +00:00
"standard": "^5.4.1",
2014-10-20 05:56:57 +00:00
"tape": "^3.0.1"
},
2014-10-20 04:17:38 +00:00
"author": "Mathias Buus",
2014-10-20 04:26:56 +00:00
"license": "MIT",
2016-02-27 20:29:07 +00:00
"directories": {
"test": "test"
},
2016-08-02 23:27:38 +00:00
"keywords": [
"electron"
]
2016-09-27 22:14:42 +00:00
}