-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.23 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "koa-ovenware",
"version": "0.5.0",
"description": "Automatic Model / Controller Loader for Koa",
"main": "lib/kow.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --require should test/* --bail",
"test-cov": "node node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -u exports --require should test/* --bail",
"test-travis": "node node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -u exports --require should test/* --bail"
},
"repository": {
"type": "git",
"url": "https://github.com/zedgu/koa-ovenware.git"
},
"keywords": [
"MVC",
"Automatic",
"koa",
"middleware",
"loader",
"route",
"router"
],
"author": "zedgu",
"license": "MIT",
"bugs": {
"url": "https://github.com/zedgu/koa-ovenware/issues"
},
"homepage": "https://github.com/zedgu/koa-ovenware",
"dependencies": {
"debug": "*",
"koa-router": "^7.2.0",
"ovenware": "^0.2.3"
},
"devDependencies": {
"co-body": "^4.0.0",
"istanbul-harmony": "^0.3.16",
"koa": "^2.0.1",
"mocha": "^2.3.4",
"ovenware": "^0.2.3",
"should": "^8.2.0",
"supertest": "^1.1.0"
},
"engines": {
"node": ">= 0.11.9"
}
}