-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.31 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
53
54
55
56
57
{
"name": "@vegardit/har-extract",
"version": "2.0.1",
"description": "extract http archives (HAR 1.2) to filesystem",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"coverage": "nyc npm test && nyc report --reporter=html",
"format": "prettier-eslint --write \"src/**/*.js\" \"test/**/*.js\"",
"lint": "eslint src",
"test": "ava --verbose",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vegardit/node-har-extract.git"
},
"keywords": [
"har",
"extract",
"http-archive"
],
"author": "Benjamin Kroeger <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vegardit/node-har-extract/issues"
},
"homepage": "https://github.com/vegardit/node-har-extract#readme",
"devDependencies": {
"ava": "^2.2.0",
"eslint": "^7.9.0",
"eslint-config-oniyi": "^6.0.1",
"eslint-plugin-import": "^2.22.0",
"nyc": "^15.1.0",
"prettier-eslint-cli": "^5.0.0",
"rimraf": "^3.0.2"
},
"nyc": {
"include": [
"lib/**.js"
],
"exclude": [
"**/*.test.js"
]
},
"dependencies": {
"har-validator": "^5.1.5",
"lodash": "^4.17.20",
"make-dir": "^3.1.0",
"roarr": "^7.0.0"
},
"engines": {
"node": ">=12.0.0"
}
}