-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 968 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
44
{
"name": "trepanjs",
"version": "0.2.7",
"description": "A gdb-like debugger for nodejs. It is in the style of the trepanning debuggers.",
"author": "Rocky Bernstein <[email protected]>",
"bin": {
"trepanjs": "./bin/trepanjs"
},
"bugs": {
"url": "https://github.com/rocky/trepanjs/issues"
},
"dependencies": {
"consolehighlighter": "^0.1.5",
"marked": "~> 4.0.10",
"marked-terminal": "^1.6.1",
"nopt": "*"
},
"directories": {
"bin": "./bin",
"doc": "./doc",
"example": "./example",
"test": "./test"
},
"engines": {
"node": ">=0.10.0 <7.7.0"
},
"license": "ISC",
"keywords": [
"debugger",
"gdb",
"trepan"
],
"repository": {
"type": "git",
"url": "https://github.com/rocky/trepanjs"
},
"scripts": {
"test": "make test"
},
"devDependencies": {
"chai": "^2.3.0",
"mocha": "^2.2.4"
}
}