-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 940 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 940 Bytes
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
38
39
{
"name": "koa-methodoverride",
"version": "2.0.0",
"description": "HTTP method override for koa",
"author": "Fangdun Cai <cfddream@gmail.com>",
"license": "MIT",
"repository": "github:koa-modules/methodoverride",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks",
"test-ci": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/*.js",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/*.js"
},
"keywords": [
"method",
"override",
"koa",
"middleware"
],
"dependencies": {
"debug": "*",
"methods": "*"
},
"devDependencies": {
"istanbul": "^0.x",
"koa": "^2.0.0-alpha.3",
"mocha": "^2.x",
"supertest": "^1.x"
},
"engines": {
"node": ">= 4"
},
"files": [
"History.md",
"index.js",
"LICENSE",
"README.md"
]
}