-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1004 Bytes
/
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
{
"name": "chromium-remote-debugging-proxy",
"version": "0.6.1",
"description": "A proxy that sits in between a chromium devtools frontend and the remote chromium being debugged and logs requests, responses and websocket messages that are exchanged.",
"main": "index.js",
"bin": {
"crdp": "./index.js",
"crdp-visualize": "./visualize.js"
},
"scripts": {},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/chromium-remote-debugging-proxy.git"
},
"homepage": "https://github.com/thlorenz/chromium-remote-debugging-proxy",
"dependencies": {
"http-proxy": "~1.13.2",
"minimist": "~1.1.0",
"npmlog": "~0.1.1",
"traverse": "~0.6.6",
"websocket-driver": "~0.3.5"
},
"devDependencies": {},
"keywords": [
"chromium",
"devtools",
"websocket"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=0.8"
}
}