forked from enlight/dbgmits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
52
53
54
55
56
57
{
"name": "asmimproved-dbgmits",
"version": "0.1.4",
"engines": {
"node": ">=0.12.0"
},
"description": "Provides the ability to control GDB and LLDB programmatically via GDB/MI.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"typescript": {
"definitions": [
"typings/bunyan/bunyan.d.ts"
]
},
"scripts": {
"preinstall": "",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ASMImproved/dbgmits.git"
},
"keywords": [
"debug",
"debugger",
"gdb",
"lldb"
],
"author": "Vadim Macagon",
"license": "MIT",
"devDependencies": {
"bunyan-prettystream": "^0.1.3",
"chai": "^2.1.2",
"chai-as-promised": "^4.3.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-env": "^0.4.4",
"grunt-mocha-test": "^0.12.7",
"grunt-node-gyp": "^1.0.0",
"grunt-peg": "^1.5.0",
"grunt-release": "^0.12.0",
"grunt-tsc": "git://github.com/enlight/grunt-tsc",
"grunt-tsd": "^0.2.0-beta.1",
"grunt-tslint": "^2.5.0",
"grunt-typedoc": "^0.2.2",
"mocha": "^2.2.1",
"source-map-support": "^0.2.10",
"tslint": "^2.5.1",
"typedoc": "^0.3.4",
"typescript": "^1.6.2"
},
"dependencies": {
"bunyan": "^1.3.5",
"unix-pty": "git://github.com/enlight/node-unix-pty"
}
}