-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
{
"name": "@koa-lite/controller",
"version": "0.4.1",
"description": "integrated koa-router and joi, support api docs generated",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"start": "ts-node example/index.ts",
"build": "npm run clean && tsc -p tsconfig-build.json && npm run copy",
"copy": "cp -rf src/docs dist/",
"clean": "rimraf ./dist",
"release": "npm run build && npm publish --access public"
},
"author": "luckcoding",
"homepage": "https://github.com/luckcoding/koa-controller",
"repository": {
"type": "git",
"url": "https://github.com/luckcoding/koa-controller"
},
"license": "MIT",
"keywords": [
"koa",
"Joi",
"koa-router",
"controller"
],
"devDependencies": {
"@koa/cors": "^3.0.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.11.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-jwt": "^3.6.0",
"rimraf": "^3.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"dependencies": {
"@koa-lite/joi-schema": "^0.0.1",
"@koa/router": "^10.0.0",
"@types/koa__router": "^8.0.4",
"joi": "^17.4.0"
},
"engines": {
"node": ">=7.6.0"
}
}