This repository has been archived by the owner on Sep 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "gdb-js",
"version": "1.3.0",
"author": "Alexander Baygeldin <[email protected]>",
"description": "JavaScript interface for GDB.",
"license": "MPL-2.0",
"main": "lib/index.js",
"scripts": {
"pretest": "npm run docker-run",
"test": "mocha || (npm run posttest && false)",
"posttest": "npm run docker-rm",
"prepublish": "npm run release && npm test && npm run lint",
"postpublish": "npm run clean",
"docker-run": "docker run -i -d --cap-add sys_ptrace --name gdb-js baygeldin/gdb-examples:v1.2",
"docker-rm": "docker rm -f gdb-js",
"docker-pull": "docker pull baygeldin/gdb-examples:v1.2",
"debug": "DEBUG=gdb-js:* mocha",
"docs": "jsdoc -c jsdoc.json",
"build": "webpack",
"watch": "npm run build -- --watch",
"release": "export NODE_ENV=production && npm run build",
"lint": "standard --verbose {src,test}/**/*.js *.js | snazzy",
"clean": "rm -rf lib"
},
"keywords": [
"gdb",
"debug",
"gdbmi",
"gdb-mi",
"inspector"
],
"repository": {
"type": "git",
"url": "git+https://github.com/taskcluster/gdb-js.git"
},
"bugs": {
"url": "https://github.com/taskcluster/gdb-js/issues"
},
"homepage": "https://github.com/taskcluster/gdb-js#readme",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-plugin-transform-regenerator": "^6.6.5",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"docdash": "^0.4.0",
"dockerode": "^2.2.10",
"dockerode-promise": "^0.1.0",
"jsdoc": "^3.4.0",
"jsdoc-strip-async-await": "^0.1.0",
"mocha": "^2.5.1",
"pegjs": "^0.9.0",
"pegjs-loader": "^0.4.0",
"raw-loader": "^0.5.1",
"snazzy": "^4.0.0",
"source-map-support": "^0.4.0",
"standard": "^7.1.0",
"webpack": "^1.13.1"
},
"standard": {
"parser": "babel-eslint"
},
"dependencies": {
"debug": "^2.2.0",
"highland": "^2.8.1"
}
}