-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
{
"name": "oreo-router",
"version": "0.0.1",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib coverage .nyc_output",
"copy": "cp -r src lib",
"compile": "node_modules/.bin/babel src -d lib",
"build": "npm run clean && npm run copy && npm run compile",
"lint": "node_modules/.bin/eslint src",
"prepublish": "npm run build"
},
"keywords": [
"koa",
"router",
"decorator",
"swagger",
"oai",
"openapi",
"api",
"restful"
],
"author": "bitebit",
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:BiteBit/oreo-router.git"
},
"dependencies": {
"ajv-oai": "^1.0.0",
"debug": "^2.6.9",
"get-caller-file": "^1.0.2",
"is-class": "0.0.4",
"jsonschema-oai-parameters": "0.0.2",
"koa-router": "^7.2.1",
"lodash": "^4.17.2",
"require-directory": "^2.1.1",
"url-join": "^2.0.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-async-generator-functions": "^6.17.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"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.18.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0"
},
"description": "Koa Router, Decorator Style."
}