This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
66 lines (66 loc) · 1.94 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
60
61
62
63
64
65
66
{
"name": "koa-oai-router",
"version": "2.0.4",
"main": "lib",
"scripts": {
"clean": "rm -rf coverage lib",
"ci": "npm run lint && npm run test",
"build": "npm run clean && cp -r src lib && babel src -d lib",
"test": "jest test",
"lint": "node_modules/.bin/eslint src",
"prepublish": "npm run build"
},
"keywords": [
"koa",
"swagger",
"oai",
"openapi",
"restful",
"api",
"router"
],
"author": "amazing-gao",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:amazing-gao/koa-oai-router.git"
},
"dependencies": {
"bluebird": "^3.5.2",
"bottlejs": "^1.7.1",
"debug": "^2.3.2",
"js-yaml": "^3.12.0",
"klaw-sync": "^3.0.2",
"koa-router": "^7.4.0",
"lodash": "^4.17.11",
"swagger-parser": "^3.4.1",
"swagger-ui-dist": "^3.19.3",
"url-join": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-async-generator-functions": "^6.17.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.18.0",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^22.4.4",
"koa": "^2.5.3",
"koa-bodyparser": "^3.2.0",
"supertest": "^2.0.1"
},
"description": "Koa Router, based on OpenAPI, Swagger and Json Schema."
}