-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
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
{
"name": "@sinet/wrk-node",
"version": "1.0.0",
"description": "SINET-ownder fork of wrk-node",
"main": "index.js",
"scripts": {
"lint": "npm run eslint -- ./ && npm run jscs -- --esnext ./",
"eslint": "eslint",
"jscs": "jscs",
"test": "mocha",
"postinstall": "make clean && make install"
},
"bin": {
"wrk": "./src/wrk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinet/wrk-node.git"
},
"keywords": [
"node",
"wrk",
"http",
"benchmarking"
],
"author": "School Improvement Network",
"license": "MIT",
"bugs": {
"url": "https://github.com/sinet/wrk-node/issues"
},
"homepage": "https://github.com/sinet/wrk-node",
"dependencies": {
"async": "^1.4.0",
"bluebird": "^2.9.34",
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"glob": "^5.0.14"
},
"devDependencies": {
"@sinet/coding-conventions": "^2.1.1",
"eslint": "^1.10.3",
"jscs": "^2.11.0",
"mocha": "^2.2.5",
"should": "^7.0.2",
"sinon": "^1.15.4"
}
}