forked from microsoft/vscode-chrome-debug-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 814 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "vscode-chrome-debug-core",
"displayName": "vscode-chrome-debug-core",
"version": "0.1.19",
"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/index",
"dependencies": {
"source-map": "^0.5.6",
"vscode-debugadapter": "^1.11.0",
"vscode-debugprotocol": "^1.11.0",
"ws": "^1.1.1"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --recursive -u tdd ./out/test/",
"postinstall": "cd src && typings install"
}
}