-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 967 Bytes
/
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
{
"name": "@mmarchini/observe",
"version": "3.0.0",
"description": "Inspector Protocol made easy",
"main": "index.js",
"scripts": {
"test": "tape test/test-*.js",
"coverage": "nyc --reporter=html tape test/test-*.js",
"coverage-ci": "nyc --reporter=lcov tape test/test-*.js",
"pkg": "pkg --target host --output dist/observe package.json",
"linter": "eslint lib bin test"
},
"bin": "./bin/observe.js",
"repository": {
"type": "git",
"url": "[email protected]/mmarchini-oss/node-observe"
},
"keywords": [
"inspector-protocol",
"observability",
"tracing",
"profiling",
"memory"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"nyc": "^15.0.1",
"pkg": "^4.4.9",
"tape": "^4.13.2"
},
"pkg": {
"assets": [
"bin/*.js",
"lib/**/*.js"
]
},
"dependencies": {
"commander": "^5.0.0",
"ws": "^7.2.3"
}
}