-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "koa-plus",
"version": "1.2.1",
"description": "The Koa framework extended for APIs. Optimized for security, scalability, and productivity",
"main": "lib/index.js",
"repository": "https://github.com/venables/koa-plus",
"author": "Matt Venables <mattvenables@gmail.com>",
"license": "MIT",
"standard": {
"env": [
"mocha"
]
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha 'test/**/*.spec.js'",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"dependencies": {
"debug": "^2.6.0",
"kcors": "^2.2.0",
"koa": "^2.2.0",
"koa-body": "^1.6.0",
"koa-compress": "^2.0.0",
"koa-conditional-get": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-etag": "^3.0.0",
"koa-helmet": "^3.1.0",
"koa-json": "^2.0.2",
"koa-morgan": "^1.0.1",
"koa-response-time": "^2.0.0",
"lodash.defaultsdeep": "^4.6.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"coveralls": "^2.11.15",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"supertest": "^2.0.1"
}
}