-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
55 lines (55 loc) · 1.53 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
48
49
50
51
52
53
54
55
{
"name": "devtron",
"version": "1.4.0",
"description": "Electron DevTools Extension",
"main": "./api.js",
"scripts": {
"prepublish": "browserify lib/*.js -o out/index.js --ignore-missing --entry lib/index.js && browserify lib/browser-globals.js -o out/browser-globals.js",
"start": "browserify lib/browser-globals.js -o out/browser-globals.js && watchify lib/*.js -o out/index.js --ignore-missing --entry lib/index.js --verbose",
"test": "mocha test/unit/*-test.js test/integration/*-test.js && standard",
"prepack": "check-for-leaks",
"prepush": "check-for-leaks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/devtron.git"
},
"author": "Kevin Sawicki",
"license": "MIT",
"bugs": {
"url": "https://github.com/electron/devtron/issues"
},
"keywords": [
"Electron",
"Chrome",
"Chromium",
"devtools",
"developer tools"
],
"homepage": "https://github.com/electron/devtron#readme",
"devDependencies": {
"body-parser": "^1.15.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"check-for-leaks": "^1.2.0",
"cors": "^2.7.1",
"electron-prebuilt": "~1.2.2",
"express": "^4.13.4",
"husky": "^0.14.3",
"mocha": "^2.4.5",
"spectron": "~3.2.3",
"standard": "^6.0.8",
"watchify": "^3.7.0"
},
"dependencies": {
"accessibility-developer-tools": "^2.11.0",
"highlight.js": "^9.3.0",
"humanize-plus": "^1.8.1"
},
"standard": {
"ignore": [
"/out/index.js"
]
}
}