-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "node-gdb",
"version": "0.0.5",
"description": "Control GDB from node.js",
"main": "lib/index.js",
"scripts": {
"jison": "jison ./src/gdbmi.jison -o ./lib/gdbmi.js",
"coffee": "coffee --compile --output lib src",
"prepublish": "npm run coffee && npm run jison",
"pretest": "npm run jison",
"test": "mocha --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul",
"posttest": "istanbul report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gsmcmullin/node-gdb.git"
},
"keywords": [
"gdb",
"debug",
"debugger"
],
"author": {
"name": "Gareth McMullin",
"email": "[email protected]"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gsmcmullin/node-gdb/issues"
},
"homepage": "https://github.com/gsmcmullin/node-gdb#readme",
"dependencies": {
"event-kit": "^2.2.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"coffee-coverage": "^1.0.1",
"coffee-script": "^1.11.1",
"istanbul": "^0.4.5",
"jison": "~0.4.17",
"mocha": "^3.1.2",
"sinon": "^1.17.6"
}
}