-
Notifications
You must be signed in to change notification settings - Fork 311
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "chrome-remote-interface",
"author": "Andrea Cardaci <[email protected]>",
"license": "MIT",
"contributors": [
"Andrey Sidorov <[email protected]>",
"Greg Cochard <[email protected]>"
],
"description": "Chrome Debugging Protocol interface",
"keywords": [
"chrome",
"debug",
"protocol",
"remote",
"interface"
],
"homepage": "https://github.com/cyrus-and/chrome-remote-interface",
"version": "0.33.2",
"repository": {
"type": "git",
"url": "git://github.com/cyrus-and/chrome-remote-interface.git"
},
"bugs": {
"url": "http://github.com/cyrus-and/chrome-remote-interface/issues"
},
"engine-strict": {
"node": ">=8"
},
"dependencies": {
"commander": "2.11.x",
"ws": "^7.2.0"
},
"files": [
"lib",
"bin",
"index.js",
"chrome-remote-interface.js",
"webpack.config.js"
],
"bin": {
"chrome-remote-interface": "bin/client.js"
},
"main": "index.js",
"browser": "chrome-remote-interface.js",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "8.x.x",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^8.8.0",
"json-loader": "^0.5.4",
"mocha": "^9.2.0",
"process": "^0.11.10",
"url": "^0.11.0",
"util": "^0.12.4",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"test": "./scripts/run-tests.sh",
"webpack": "webpack",
"prepare": "webpack"
}
}