-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 2.17 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
58
59
60
{
"name": "dbgmits",
"version": "0.1.0",
"engines": {
"node": ">=6.1.0"
},
"description": "Provides the ability to control GDB and LLDB programmatically via GDB/MI.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"preinstall": "",
"install": "echo \"Ignoring 'binding.gyp', it's only used to build the test targets.\"",
"test": "echo \"Use 'npm run gdb-tests' or 'npm run lldb-tests' instead.\"",
"build": "npm run peg && node scripts/copy-parser-dts.js && npm run compile",
"compile": "tsc -p src/tsconfig.json",
"build:tests": "tsc -p test/tsconfig.json",
"build:docs": "typedoc --mode modules --out docs/ --module commonjs --target ES6 src/",
"peg": "pegjs -o lib/mi_output_parser.js src/mi_output_grammar.pegjs",
"tslint": "tslint --force -c conf/tslint.json src/**/*.ts test/**/*.ts",
"configure-tests": "node-gyp rebuild --debug",
"gdb-tests": "cross-env DBGMITS_DEBUGGER=gdb mocha --reporter ../../../test-js/custom_reporter --grep @skipOnGDB --invert test-js/**/*.js",
"lldb-tests": "cross-env DBGMITS_DEBUGGER=lldb mocha --reporter ../../../test-js/custom_reporter --grep @skipOnLLDB --invert test-js/**/*.js",
"utils-tests": "mocha --reporter ../../../test-js/custom_reporter test-js/source_line_resolver_tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/enlight/dbgmits.git"
},
"keywords": [
"debug",
"debugger",
"gdb",
"lldb"
],
"author": "Vadim Macagon",
"license": "MIT",
"devDependencies": {
"@types/bunyan-prettystream": "^0.1.30",
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/mocha": "^2.2.32",
"bunyan-prettystream": "^0.1.3",
"chai": "^2.3.0",
"chai-as-promised": "^4.3.0",
"cross-env": "^3.1.1",
"mocha": "^2.5.3",
"pegjs": "^0.10.0",
"shelljs": "^0.7.4",
"source-map-support": "^0.2.10",
"tslint": "^3.15.0-dev.0",
"typescript": "^2.1.0-dev.20161002"
},
"dependencies": {
"@types/bunyan": "0.0.30",
"@types/node": "^6.0.41",
"bunyan": "^1.3.5",
"unix-pty": "github:enlight/node-unix-pty"
},
"bugs": "https://github.com/enlight/dbgmits/issues"
}