-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.8 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@micro-app/plugin-koa",
"version": "0.5.4",
"description": "[Plugin] koa adapter plugin.",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "npm run test",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"demo": "cd demo && node index.js",
"publish:next": "npm publish --tag next",
"release": "micro-app release",
"release:alpha": "npm run release -- --preRelease=alpha",
"release:next": "npm run release -- --preRelease=next",
"release:minor": "npm run release -- minor",
"release:patch": "npm run release -- patch"
},
"files": [
"bin",
"src"
],
"homepage": "https://github.com/MicroAppJS/plugin-koa",
"repository": {
"type": "git",
"url": "git+https://github.com/MicroAppJS/plugin-koa.git"
},
"bugs": {
"url": "https://github.com/MicroAppJS/plugin-koa/issues"
},
"keywords": [
"micro",
"micro-app",
"micro-application",
"plugin",
"koa-adapter",
"adapter",
"koa"
],
"author": {
"name": "Zyao89",
"email": "zyao89@gmail.com"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"peerDependencies": {
"@micro-app/cli": "^0.4.1"
},
"devDependencies": {
"@micro-app/cli": "^0.5.1",
"@micro-app/plugin-deploy": "^0.0.9",
"@types/jest": "^24.9.1",
"eslint-config-2o3t": "^2.0.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0"
},
"dependencies": {
"koa": "^2.13.4",
"koa-convert": "^2.0.0",
"koa-logger": "^3.2.1",
"koa-onerror": "^4.2.0",
"koa-router": "^10.1.1",
"koa2-swagger-ui": "^5.5.0",
"moment": "^2.29.2",
"portfinder": "^1.0.28",
"swagger-jsdoc": "3.7.0"
}
}