-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 975 Bytes
/
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
{
"name": "harper",
"version": "1.1.0",
"description": "A CLI tool that parses HAR (HTTP Archive) data for common web file types and logs the results",
"license": "ISC",
"preferGlobal": true,
"author": {
"email": "[email protected]",
"name": "Chris Goodchild",
"url": "git://github.com/chris-goodchild"
},
"keywords": [
"har",
"http",
"archive",
"parser"
],
"repository": {
"type": "git",
"url": "git://github.com/chris-goodchild/harper.git"
},
"bugs": {
"url": "https://github.com/chris-goodchild/harper/issues"
},
"bin": {
"harper": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified - it's on my TODO list :)\" && exit 1",
"clean": "rimraf .harper",
"lint": "standard"
},
"dependencies": {
"cli-table": "^0.3.1",
"command-line-args": "^3.0.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"rimraf": "^2.5.3",
"standard": "^5.4.1"
}
}