forked from zedgu/koa-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "koa-kit",
"version": "1.0.0",
"description": "A Koa Framework Kit",
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec --require should test/* --bail",
"test-cov": "NODE_ENV=test node node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -u exports --require should test/* --bail",
"test-travis": "NODE_ENV=test 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-kit.git"
},
"keywords": [
"koa",
"http",
"https",
"web",
"application",
"framework",
"modules",
"middleware",
"generators",
"es6",
"boilerplate",
"mvc",
"router"
],
"author": {
"name": "Zed Gu",
"email": "[email protected]",
"url": "http://zgu.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zedgu/koa-kit/issues"
},
"homepage": "https://github.com/zedgu/koa-kit",
"dependencies": {
"debug": "^2.2.0",
"koa": "^1.2.0",
"koa-body": "^1.4.0",
"koa-conditional-get": "^1.0.3",
"koa-csrf": "^2.1.3",
"koa-etag": "^2.1.1",
"koa-http-errors": "^0.3.0",
"koa-logger": "^1.3.0"
},
"devDependencies": {
"istanbul-harmony": "*",
"mocha": "*",
"should": "*",
"supertest": "*"
}
}