electron/npm/package.json

34 lines
831 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-11-23 08:46:12 +09:00
"version": "1.4.8",
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",
2016-09-27 15:15:07 -07:00
"pretest": "npm run cache-clean && npm run postinstall",
"test": "tape test/*.js && 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",
2014-10-20 13:17:38 +09:00
"dependencies": {
"extract-zip": "^1.0.3",
2016-09-27 15:14:42 -07:00
"electron-download": "^3.0.1"
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",
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-08-02 16:27:38 -07:00
"keywords": [
"electron"
]
2016-09-30 05:22:57 -07:00
}