-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 KB
/
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
45
46
47
{
"name": "electron-inspector",
"version": "0.1.4",
"engines": {
"node": ">=4.5.0"
},
"description": "Debugger UI for the main Electron process",
"main": "lib/index.js",
"bin": {
"electron-inspector": "bin/electron-inspector.js"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc -p src/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enlight/electron-inspector.git"
},
"keywords": [
"electron",
"node-inspector",
"inspector",
"debug",
"debugger"
],
"author": "Vadim Macagon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/enlight/electron-inspector/issues"
},
"homepage": "https://github.com/enlight/electron-inspector#readme",
"dependencies": {
"node-inspector": "git+https://github.com/enlight/node-inspector",
"v8-debug": "^0.7.7",
"v8-profiler": "git+https://github.com/enlight/v8-profiler.git#v5.6.5-electron-v1.3",
"yargs": "^5.0.0"
},
"devDependencies": {
"@types/node": "^6.0.38",
"@types/yargs": "0.0.30",
"electron": "^1.3.5",
"electron-rebuild": "^1.2.1",
"tslint": "^3.15.0-dev.0",
"typescript": "^2.1.0-dev.20160912"
}
}