-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "bare-inspector",
"version": "4.0.1",
"description": "V8 inspector support for Bare",
"exports": {
".": "./index.js",
"./package": "./package.json",
"./console": "./lib/console.js",
"./session": "./lib/session.js",
"./server": "./lib/server.js",
"./heap-snapshot": "./lib/heap-snapshot.js"
},
"files": [
"index.js",
"binding.c",
"binding.js",
"lib",
"CMakeLists.txt",
"prebuilds"
],
"addon": true,
"scripts": {
"test": "prettier . --check && bare test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-inspector.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-inspector/issues"
},
"homepage": "https://github.com/holepunchto/bare-inspector#readme",
"engines": {
"bare": ">=1.2.0"
},
"dependencies": {
"bare-events": "^2.1.0",
"bare-http1": "^4.0.0",
"bare-stream": "^2.0.0",
"bare-url": "^2.0.0",
"bare-ws": "^2.0.0"
},
"devDependencies": {
"brittle": "^3.3.2",
"cmake-bare": "^1.1.6",
"prettier": "^3.4.1",
"prettier-config-standard": "^7.0.0"
}
}