forked from yahoo/node-limits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·31 lines (31 loc) · 1.06 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
{
"name": "limits",
"description": "Sets the limit to upload size and processing time for incoming and outgoing requests.",
"author": "Abhinav Raj <[email protected]>",
"version": "0.0.1",
"devDependencies": {
"ytestrunner": "*",
"yuitest": "*",
"jshint": "~0.9.0",
"istanbul": "~0.1.27"
},
"main": "./lib/index.js",
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/",
"test": "istanbul cover --print=both --yui ytestrunner -- --include ./tests/options.js --include ./tests/builder.js --include ./tests/parser.js --include ./tests/parser_coffee.js --include ./tests/test-limits.js"
},
"bugs": { "url" : "http://github.com/yahoo/node-limits/issues" },
"licenses":[
{
"type" : "BSD",
"url" : "https://github.com/yahoo/node-limits/blob/master/LICENSE"
}
],
"repository": {
"type":"git",
"url":"http://github.com/yahoo/node-limits.git"
},
"engines": {
"node": ">0.8.x"
}
}