1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "methods",
|
3 |
|
|
"description": "HTTP methods that node supports",
|
4 |
|
|
"version": "1.1.2",
|
5 |
|
|
"contributors": [
|
6 |
|
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
7 |
|
|
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
|
8 |
|
|
"TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)"
|
9 |
|
|
],
|
10 |
|
|
"license": "MIT",
|
11 |
|
|
"repository": "jshttp/methods",
|
12 |
|
|
"devDependencies": {
|
13 |
|
|
"istanbul": "0.4.1",
|
14 |
|
|
"mocha": "1.21.5"
|
15 |
|
|
},
|
16 |
|
|
"files": [
|
17 |
|
|
"index.js",
|
18 |
|
|
"HISTORY.md",
|
19 |
|
|
"LICENSE"
|
20 |
|
|
],
|
21 |
|
|
"engines": {
|
22 |
|
|
"node": ">= 0.6"
|
23 |
|
|
},
|
24 |
|
|
"scripts": {
|
25 |
|
|
"test": "mocha --reporter spec --bail --check-leaks test/",
|
26 |
|
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
|
27 |
|
|
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
|
28 |
|
|
},
|
29 |
|
|
"browser": {
|
30 |
|
|
"http": false
|
31 |
|
|
},
|
32 |
|
|
"keywords": [
|
33 |
|
|
"http",
|
34 |
|
|
"methods"
|
35 |
|
|
]
|
36 |
|
|
}
|