This repository has been archived by the owner on Jul 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "kox",
"description": "koa module addon, make write api server more easier. Design an api style, combine with swagger(inspired by hapi-swagger).",
"main": "index.js",
"version": "0.2.15",
"scripts": {
"test": "npm run lint && mocha",
"dev": "NODE_ENV=development node app.js",
"bench": "cd benchmarks && make",
"lint": "eslint --ext .js lib index.js",
"prepublish": "npm run test",
"pub": "npm publish --registry https://registry.npmjs.org"
},
"repository": "sunfuze/kox",
"keywords": [
"koa",
"api",
"swagger"
],
"license": "MIT",
"author": "sunfuze <[email protected]>",
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"co-mocha": "^1.1.3",
"codecov": "^1.0.1",
"eslint": "^3.6.1",
"eslint-config-standard": "^6.1.0",
"eslint-friendly-formatter": "^2.0.6",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.1.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"co-wechat-api": "^2.6.0",
"debug": "^2.2.0",
"handlebars": "^4.0.5",
"hoek": "^4.1.0",
"http-status": "^0.2.3",
"joi": "9.0.4",
"json-schema-ref-parser": "^3.1.2",
"koa": "^1.2.4",
"koa-body": "^1.6.0",
"koa-compose": "^2.4.0",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"lodash": "^4.16.4",
"require-dir": "^0.3.1",
"swagger-client": "^2.1.25",
"swagger-parser": "^3.4.1"
},
"engines": {
"node": ">=6.0.0"
}
}