-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"version": "1.0.0",
"name": "har",
"description": "HTTP Archive (HAR) Dynamic Object",
"author": "Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/ahmadnassri/har",
"repository": "ahmadnassri/har",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"har",
"http",
"archive"
],
"engines": {
"node": ">= 4"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/ahmadnassri/har/issues"
},
"scripts": {
"pretest": "standard && echint",
"test": "mocha",
"posttest": "npm run coverage",
"coverage": "istanbul cover --dir coverage _mocha -- -R dot",
"codeclimate": "codeclimate < coverage/lcov.info"
},
"echint": {
"ignore": [
"coverage/**"
]
},
"devDependencies": {
"codeclimate-test-reporter": "0.5.1",
"echint": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^6.0.0",
"should": "^11.1.0",
"standard": "^8.0.0"
},
"dependencies": {
"commander": "^2.8.1",
"debug": "^4.0.0",
"har-validator": "^4.0.1"
}
}