-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "har-recorder",
"version": "0.0.1",
"description": "capture HAR recordings from Chrome sessions or Selenium tests",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/_mocha --require babel-core/register --require babel-polyfill test"
},
"babel": {
"presets": [
"env"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/loadmill/har-recorder.git"
},
"keywords": [
"capture",
"selenium",
"har",
"recording",
"chrome",
"devtools",
"protocol"
],
"author": "idoco",
"license": "MIT",
"bugs": {
"url": "https://github.com/loadmill/har-recorder/issues"
},
"homepage": "https://github.com/loadmill/har-recorder#readme",
"dependencies": {
"chrome-remote-interface": "^0.28.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chromedriver": "^78.0.1",
"mocha": "^5.2.0",
"selenium-webdriver": "^4.0.0-alpha.5",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0"
}
}