-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.07 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.07 KB
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
{
"name": "trepan-ni",
"version": "3.4.5",
"description": "Trepan debugger for Node Inspect (and based on node inspect debugger)",
"author": {
"name": "Rocky Bernstein",
"email": "rocky.bernstein@consensys.net"
},
"license": "MIT",
"main": "lib/_inspect.js",
"bin": "cli.js",
"bugs": {
"url": "https://github.com/rocky/trepan-ni/issues"
},
"dependencies": {
"consolehighlighter": "^0.1.5",
"marked": "^0.3.0",
"marked-terminal": "^1.6.1",
"nan": "^2.11.1"
},
"devDependencies": {
"eslint": ">=4.18.2",
"tap": "^12.0.1"
},
"files": [
"*.js",
"lib"
],
"homepage": "https://github.com/rocky/trepan-ni",
"keywords": [
"debugger",
"gdb",
"trepan"
],
"nlm": {
"license": {
"files": [
"lib"
]
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rocky/trepan-ni"
},
"scripts": {
"pretest": "eslint --rulesdir=tools/eslint-rules lib test",
"test": "tap test"
}
}