-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
{
"name": "autocannon-reporter",
"version": "1.1.0",
"description": "A tool for creating html reports for autocannon",
"main": "index.js",
"bin": {
"autocannon-reporter": "index.js"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "lab -l --ignore Document,Node,Element,Comment,Text,document",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thekemkid/autocannon-reporter.git"
},
"keywords": [
"graph",
"html",
"autocannon"
],
"author": "Glen Keane <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thekemkid/autocannon-reporter/issues"
},
"homepage": "https://github.com/thekemkid/autocannon-reporter#readme",
"devDependencies": {
"code": "^3.0.1",
"lab": "^10.8.2",
"pre-commit": "^1.1.2",
"standard": "^7.1.2 "
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"flexboxgrid": "^6.3.0",
"hyperscript": "^1.4.7",
"hyperx": "^2.0.4",
"minimist": "^1.2.0",
"moment": "^2.14.1",
"ndjson": "^1.4.3",
"pretty-bytes": "^3.0.1",
"steed": "^1.1.3"
}
}