forked from MarshallOfSound/electron-devtools-installer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 948 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "electron-devtools-installer-offline",
"version": "0.1.4",
"description": "An easy way to install Dev Tools extensions into Electron applications",
"main": "dist/index.js",
"scripts": {
"compile": "babel src --out-dir dist"
},
"files": [
"dist/*",
"extensions/*"
],
"keywords": [
"electron",
"dev",
"tools",
"offline"
],
"author": "huang.xinghui <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/huang-x-h/electron-devtools-installer-offline.git"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"electron-prebuilt": "^1.2.1"
},
"dependencies": {
"node-zipkit": "^0.1.0",
"request": "^2.72.0",
"rimraf": "^2.5.2"
},
"peerDependencies": {
"electron-prebuilt": "^1.2.1"
},
"babel": {
"presets": [
"es2015"
]
}
}