-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.11 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
{
"version": "0.0.0-development",
"name": "@har/cli",
"description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema",
"author": "Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/ahmadnassri/har-cli",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/har-cli.git"
},
"license": "ISC",
"bin": {
"har": "lib/index.js"
},
"keywords": [
"har",
"cli",
"http",
"archive",
"validate",
"validator"
],
"engines": {
"node": ">=4"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/ahmadnassri/har-cli/issues"
},
"scripts": {
"lint": "standard && echint",
"pretest": "npm run lint",
"test": "tap test",
"coverage": "tap test --reporter silent --coverage"
},
"echint": {
"ignore": [
"README.md"
]
},
"devDependencies": {
"echint": "^4.0.1",
"standard": "^12.0.0",
"tap": "^12.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"har-validator": "^5.0.2",
"smart-promise": "^1.1.0",
"yargs": "^13.0.0"
}
}