-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "koa-oai-router-middleware",
"version": "1.1.2",
"description": "middleware loader plugin of koa-oai-router",
"main": "src/middleware.js",
"scripts": {
"ci": "npm run lint && npm run test",
"test": "jest test",
"lint": "node_modules/.bin/eslint src"
},
"keywords": [
"koa",
"swagger",
"oai",
"openapi",
"restful",
"api",
"router"
],
"author": "bitebit",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"koa-compose": "^4.0.0",
"lodash": "^4.17.4"
},
"peerDependencies": {
"koa-oai-router": "^2.0.0-alpha.6 || ^2.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.1.4",
"koa": "^2.4.1",
"koa-bodyparser": "^3.2.0",
"koa-oai-router": "^2.0.0-alpha.2",
"regenerator-runtime": "^0.11.1",
"supertest": "^3.0.0"
}
}