UNPKG

1.27 kBJSONView Raw
1{
2 "name": "devtron",
3 "version": "1.0.1",
4 "description": "Electron DevTools Extension",
5 "main": "./api.js",
6 "scripts": {
7 "prepublish": "browserify lib/*.js -o out/index.js --ignore-missing --entry lib/index.js",
8 "start": "watchify lib/*.js -o out/index.js --ignore-missing --entry lib/index.js --verbose",
9 "test": "mocha test/unit/*-test.js test/integration/*-test.js && standard"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git+https://github.com/electron/devtron.git"
14 },
15 "author": "Kevin Sawicki",
16 "license": "MIT",
17 "bugs": {
18 "url": "https://github.com/electron/devtron/issues"
19 },
20 "keywords": [
21 "Electron",
22 "Chrome",
23 "Chromium",
24 "devtools",
25 "developer tools"
26 ],
27 "homepage": "https://github.com/electron/devtron#readme",
28 "devDependencies": {
29 "body-parser": "^1.15.0",
30 "browserify": "^13.0.0",
31 "chai": "^3.5.0",
32 "chai-as-promised": "^5.3.0",
33 "cors": "^2.7.1",
34 "electron-prebuilt": "^0.37.8",
35 "express": "^4.13.4",
36 "mocha": "^2.4.5",
37 "spectron": "~2.37.0",
38 "standard": "^6.0.8",
39 "watchify": "^3.7.0"
40 },
41 "dependencies": {
42 "highlight.js": "^9.3.0",
43 "humanize-plus": "^1.8.1"
44 },
45 "standard": {
46 "ignore": [
47 "/out/index.js"
48 ]
49 }
50}