forked from yahoo/httpmetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (37 loc) · 963 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": "httpmetrics",
"description": "HTTP monkey-patching to insert metrics to each http call",
"version": "0.0.2",
"author": "Rohini Harendra <rohini.raghav@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/yahoo/httpmetrics.git"
},
"bugs": {
"url" : "http://github.com/yahoo/httpmetrics/issues"
},
"keywords": [
"httpmetrics", "yahoo"
],
"licenses":[
{
"type" : "BSD",
"url" : "https://github.com/yahoo/httpmetrics/blob/master/LICENSE"
}
],
"engines": { "node": ">=0.6" },
"dependencies": {
},
"devDependencies": {
"jshint": "~0.9.0",
"yui-lint": "~0.1.1",
"istanbul": "~0.1.8",
"vows": "*",
"mockery" : "*"
},
"main": "./lib/httpmetrics.js",
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/",
"test": "istanbul cover --print both vows -- --spec ./tests/*.js"
}
}