-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "browsermob-proxy-client",
"description": "Javascript client for browsermob-proxy",
"keywords": [
"selenium",
"test",
"selenium-webdriver",
"proxy",
"tests",
"browsermob-proxy-client",
"har"
],
"version": "0.1.2",
"homepage": "https://github.com/BenRuns/bmp-client",
"author": "Ben Patterson <ben@benpatterson.io>",
"repository": {
"type": "git",
"url": "https://github.com/BenRuns/bmp-client.git"
},
"bugs": {
"url": "https://github.com/BenRuns/bmp-client/issues"
},
"main": "./index.js",
"dependencies": {
"request": "^2.81.0",
"lodash": "^4.17.4",
"request-promise-native": "^1.0.3"
},
"devDependencies": {
"chai": "4.3.6",
"chromedriver": "110.0.0",
"ip": "1.1.8",
"mocha": "10.2.0",
"selenium-webdriver": "4.5.0"
},
"scripts": {
"test": "mocha",
"install-browsermob": "curl --location https://github.com/lightbody/browsermob-proxy/releases/download/browsermob-proxy-2.1.4/browsermob-proxy-2.1.4-bin.zip > temp.zip;unzip temp.zip; rm temp.zip",
"start-browsermob": "sh ./browsermob-proxy-2.1.4/bin/browsermob-proxy"
},
"jshintConfig": {
"esversion": 6,
"node": true,
"mocha": true
}
}