-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 837 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
{
"name": "wreck-stats",
"description": "wreck-stats is wreck with a stats logging feature",
"version": "1.0.0",
"author": "Sam Selvanathan <[email protected]>",
"license": "MIT",
"keywords": [
"wreck",
"stats",
"http",
"timing"
],
"repository": "samsel/wreck-stats",
"main": "lib/index.js",
"scripts": {
"test": "npm run jscs && npm run lint && make test-cov",
"jscs": "./node_modules/.bin/jscs .",
"lint": "jshint --config=.jshintrc --exclude='node_modules' lib/*.js"
},
"dependencies": {
"node-uuid": "^1.4.2",
"wreck": "^5.1.0"
},
"devDependencies": {
"code": "^1.2.1",
"jscs": "^1.9.0",
"jshint": "^2.5.10",
"lab": "^5.1.0",
"rewire": "^2.1.3"
},
"jscsConfig": {
"excludeFiles": [
"node_modules/**"
],
"preset": "airbnb"
}
}