forked from microsoft/vscode-chrome-debug-core
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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": "vscode-chrome-debug-core",
"displayName": "vscode-chrome-debug-core",
"version": "3.15.9",
"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",
"main": "./out/src/index",
"dependencies": {
"@types/source-map": "^0.1.27",
"glob": "^7.0.6",
"noice-json-rpc": "^1.0.0",
"request-light": "^0.1.0",
"source-map": "^0.5.6",
"vscode-debugadapter": "^1.21.0-pre.2",
"vscode-debugprotocol": "^1.21.0-pre.1",
"vscode-nls": "^2.0.2",
"ws": "^1.1.1"
},
"devDependencies": {
"@types/glob": "^5.0.30",
"@types/minimatch": "^2.0.29",
"@types/mocha": "^2.2.32",
"@types/mockery": "^1.4.29",
"@types/node": "^6.0.40",
"@types/ws": "0.0.32",
"chrome-remote-debug-protocol": "git://github.com/roblourens/chrome-remote-debug-protocol.git",
"del": "^2.2.2",
"event-stream": "^3.3.4",
"gulp": "^3.9.1",
"gulp-debug": "^2.1.2",
"gulp-mocha": "^3.0.1",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^6.1.1",
"gulp-typescript": "^2.13.6",
"gulp-util": "^3.0.7",
"merge2": "^1.0.2",
"mocha": "^3.0.2",
"mockery": "^1.7.0",
"run-sequence": "^1.2.2",
"tslint": "^3.15.1",
"tslint-eslint-rules": "^1.5.0",
"tslint-microsoft-contrib": "^2.0.10",
"typemoq": "^0.3.3",
"typescript": "^2.4.1",
"vscode-nls-dev": "^2.1.3"
},
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"test": "mocha --recursive -u tdd ./out/test/",
"prepare": "gulp build"
}
}