forked from cyrus-and/chrome-remote-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "@hola.org/chrome-remote-interface",
"author": "Andrea Cardaci <cyrus.and@gmail.com>",
"license": "MIT",
"contributors": [
"Andrey Sidorov <sidoares@yandex.ru>",
"Greg Cochard <greg@gregcochard.com>"
],
"description": "Chrome Debugging Protocol interface",
"keywords": ["chrome", "debug", "protocol", "remote", "interface"],
"homepage": "https://github.com/cyrus-and/chrome-remote-interface",
"version": "0.25.1-hola.0",
"repository": {
"type": "git",
"url": "git://github.com/cyrus-and/chrome-remote-interface.git"
},
"bugs": {
"url": "http://github.com/cyrus-and/chrome-remote-interface/issues"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"ws": "3.2.x",
"commander": "2.1.x"
},
"files": [
"lib",
"bin",
"index.js",
"chrome-remote-interface.js",
"webpack.config.js"
],
"bin": {
"chrome-remote-interface": "./bin/client.js"
},
"browser": "chrome-remote-interface.js",
"devDependencies": {
"mocha": "3.1.x",
"eslint": "3.12.x",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"json-loader": "^0.5.4",
"webpack": "^1.13.3"
},
"scripts": {
"test": "./scripts/run-tests.sh",
"webpack": "webpack",
"prepublish": "webpack"
}
}