This repository has been archived by the owner on Oct 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
80 lines (80 loc) · 2.3 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
76
77
78
79
80
{
"name": "vscode-chrome-debug-core",
"displayName": "vscode-chrome-debug-core",
"version": "6.8.11",
"description": "A library for building VS Code debug adapters for targets that support the Chrome Remote Debug Protocol",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-chrome-debug-core"
},
"bugs": "https://github.com/microsoft/vscode-chrome-debug-core/issues",
"license": "SEE LICENSE IN LICENSE.txt",
"typings": "./lib/src/index.d.ts",
"main": "./out/src/index",
"dependencies": {
"@types/source-map": "^0.1.27",
"color": "^3.1.3",
"devtools-protocol": "0.0.588169",
"glob": "^7.1.3",
"noice-json-rpc": "^1.2.0",
"source-map": "^0.6.1",
"vscode-debugadapter": "^1.47.0",
"vscode-debugprotocol": "^1.37.0",
"vscode-nls": "^4.0.0",
"vscode-uri": "^2.0.2",
"ws": "^6.0.0"
},
"devDependencies": {
"@types/color": "^3.0.0",
"@types/glob": "^5.0.35",
"@types/minimatch": "^2.0.29",
"@types/mocha": "^2.2.32",
"@types/mockery": "^1.4.29",
"@types/node": "^8.0.58",
"@types/ws": "^6.0.0",
"del": "^2.2.2",
"event-stream": "^3.3.4",
"gulp": "^4.0.0",
"gulp-debug": "^2.1.2",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.1",
"gulp-util": "^3.0.7",
"merge2": "^1.0.2",
"minimist": "^1.2.5",
"mocha": "^9.0.2",
"mockery": "^1.7.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.12",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^5.0.3",
"typemoq": "^2.1.0",
"typescript": "^2.7.2",
"vscode-nls-dev": "^3.3.2"
},
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"test": "mocha --exit --recursive -u tdd ./out/test/",
"testCoverage": "nyc mocha --require source-map-support/register --exit --recursive -u tdd ./out/test/**/*.test.js",
"prepare": "gulp build",
"tslint": "gulp tslint",
"patch": "npm version patch -m '%s'",
"minor": "npm version minor -m '%s'",
"major": "npm version major -m '%s'"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/coverage/**/*.*",
"**/testData/**/*.*"
],
"reporter": "html",
"all": true
}
}