-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 807 Bytes
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
{
"name": "devtools-plus",
"version": "1.0.0",
"description": "V8 DevTools extension",
"main": "index.js",
"scripts": {
"start": "node lib/index.js",
"demo": "node --inspect lib/index.js",
"build": "babel src -d lib",
"test": "nyc --require babel-core/register mocha"
},
"keywords": [
"ui",
"nodejs",
"devtools"
],
"author": "Alexandre Morgaut",
"license": "MIT",
"repository": "https://github.com/AMorgaut/devtools-plus",
"dependencies": {
"chrome-remote-interface": "^0.31.0",
"node-fetch": "^2.3.0",
"node-firefox": "^0.1.0",
"uuid": "^8.3.2",
"ws": "^8.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jshint": "^2.9.6",
"mocha": "^9.0.3"
}
}