forked from cyrus-and/chrome-har-capturer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "chrome-har-capturer",
"author": "Andrea Cardaci <[email protected]>",
"license": "MIT",
"description": "Capture HAR files from a headless Chrome instance",
"keywords": ["har", "chrome", "debug", "protocol", "headless"],
"homepage": "https://github.com/cyrus-and/chrome-har-capturer",
"version": "0.10.1",
"repository": {
"type": "git",
"url": "git://github.com/cyrus-and/chrome-har-capturer.git"
},
"bugs" : {
"url" : "http://github.com/cyrus-and/chrome-har-capturer/issues"
},
"bin": {
"chrome-har-capturer": "./bin/cli.js"
},
"files": [
"bin",
"lib",
"index.js"
],
"scripts": {
"pretest": "eslint .",
"test": "mocha --no-exit"
},
"dependencies": {
"chrome-remote-interface": ">=0.23.0",
"commander": "2.x.x",
"chalk": "1.x.x"
},
"devDependencies": {
"eslint": "3.x.x",
"mocha": "3.x.x",
"har-validator": "5.x.x",
"http2": "3.x.x"
}
}