UNPKG

947 BJSONView Raw
1{
2 "name": "method-override",
3 "description": "Override HTTP verbs",
4 "version": "2.3.4",
5 "contributors": [
6 "Douglas Christopher Wilson <doug@somethingdoug.com>",
7 "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
8 ],
9 "license": "MIT",
10 "repository": "expressjs/method-override",
11 "dependencies": {
12 "debug": "~2.2.0",
13 "methods": "~1.1.1",
14 "parseurl": "~1.3.0",
15 "vary": "~1.0.1"
16 },
17 "devDependencies": {
18 "istanbul": "0.3.17",
19 "mocha": "2.2.5",
20 "supertest": "1.0.1"
21 },
22 "files": [
23 "LICENSE",
24 "HISTORY.md",
25 "index.js"
26 ],
27 "engines": {
28 "node": ">= 0.8.0"
29 },
30 "scripts": {
31 "test": "mocha --check-leaks --reporter spec --bail test/",
32 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/",
33 "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/"
34 }
35}