-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
40
41
42
43
{
"name": "puppeteer-har-server",
"version": "1.0.0",
"description": "Exposes puppeteer-har over a REST interface",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"start": "node lib/index.js",
"test": "if [ \"${MEASURE_COVERAGE}\" = 'true' ]; then nyc mocha; else mocha; fi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mycase/puppeteer-har-server.git"
},
"author": "MyCase Engineering",
"license": "MIT",
"bugs": {
"url": "https://github.com/mycase/puppeteer-har-server/issues"
},
"homepage": "https://github.com/mycase/puppeteer-har-server#readme",
"dependencies": {
"express": "^4.17.1",
"puppeteer-core": "^1.11.0",
"puppeteer-har": "^1.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"husky": "^4.2.3",
"mocha": "^7.1.0",
"nyc": "^15.1.0",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"puppeteer": "^2.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}