forked from eclipse-cdt-cloud/cdt-gdb-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 3.44 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
72
73
74
75
{
"name": "cdt-gdb-adapter",
"version": "0.0.15-next",
"description": "gdb adapter implementing the debug adapter protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"install": "node install.js",
"nativebuild": "node-gyp rebuild",
"prepublish": "yarn build",
"build": "tsc",
"watch": "tsc -w",
"clean": "git clean -dfx",
"docker:build": "docker run --rm -it -v $(git rev-parse --show-toplevel):/work -w /work/$(git rev-parse --show-prefix) --cap-add=SYS_PTRACE --security-opt seccomp=unconfined quay.io/eclipse-cdt/cdt-infra-eclipse-full:latest yarn",
"docker:test": "docker run --rm -it -v $(git rev-parse --show-toplevel):/work -w /work/$(git rev-parse --show-prefix) --cap-add=SYS_PTRACE --security-opt seccomp=unconfined quay.io/eclipse-cdt/cdt-infra-eclipse-full:latest yarn test",
"test": "yarn test:integration && yarn test:pty && yarn test:integration-run-in-terminal && yarn test:integration-remote-target && yarn test:integration-remote-target-run-in-terminal",
"test:integration": "cross-env JUNIT_REPORT_PATH=test-reports/integration.xml JUNIT_REPORT_STACK=1 JUNIT_REPORT_PACKAGES=1 mocha --reporter mocha-jenkins-reporter dist/integration-tests/*.spec.js",
"test:integration-run-in-terminal": "cross-env JUNIT_REPORT_PATH=test-reports/integration-run-in-terminal.xml JUNIT_REPORT_STACK=1 JUNIT_REPORT_PACKAGES=1 mocha --run-in-terminal --reporter mocha-jenkins-reporter dist/integration-tests/*.spec.js",
"test:integration-remote-target": "cross-env JUNIT_REPORT_PATH=test-reports/integration-remote-target.xml JUNIT_REPORT_STACK=1 JUNIT_REPORT_PACKAGES=1 mocha --test-remote --reporter mocha-jenkins-reporter dist/integration-tests/*.spec.js",
"test:integration-remote-target-run-in-terminal": "cross-env JUNIT_REPORT_PATH=test-reports/integration-remote-target-run-in-terminal.xml JUNIT_REPORT_STACK=1 JUNIT_REPORT_PACKAGES=1 mocha --test-remote --run-in-terminal --reporter mocha-jenkins-reporter dist/integration-tests/*.spec.js",
"test:pty": "cross-env JUNIT_REPORT_PATH=test-reports/native.xml JUNIT_REPORT_STACK=1 JUNIT_REPORT_PACKAGES=1 mocha --reporter mocha-jenkins-reporter dist/native/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-cdt/cdt-gdb-adapter.git"
},
"author": "Eclipse CDT",
"contributors": [
"Rob Moran <[email protected]>"
],
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/eclipse-cdt/cdt-gdb-adapter/issues"
},
"homepage": "https://github.com/eclipse-cdt/cdt-gdb-adapter#readme",
"dependencies": {
"node-addon-api": "^1.6.2",
"vscode-debugadapter": "^1.37.1",
"vscode-debugprotocol": "^1.37.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.2",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"mocha-jenkins-reporter": "^0.4.1",
"node-gyp": "^3.8.0",
"ts-loader": "^5.3.0",
"ts-node": "^8.3.0",
"tslint": "^5.11.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.1.5",
"vscode-debugadapter-testsupport": "^1.37.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"files": [
"NOTICE",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"src/**/*.cc",
"src/**/*.h",
"src/*.ts",
"src/mi/*.ts",
"src/native/*.ts",
"install.js",
"binding.gyp"
]
}