-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "koa-middleware-adapter",
"version": "5.2.5",
"description": "Functions and promises can be used as middleware in koa.",
"main": "./lib/index.js",
"publishConfig": {
"main": "./dist/index.js",
"typings": "./dist/index.d.ts"
},
"scripts": {
"test": "echo \\\"Error: no test specified\\\" && exit 1",
"build": "tsc",
"prepublish": "npm run build"
},
"keywords": [
"koa",
"middleware",
"adapter"
],
"author": "Si-Yual Park",
"license": "MIT",
"files": [
"lib",
"test"
],
"homepage": "https://github.com/kdPark0723/koa-middleware-adapter",
"bugs": {
"url": "https://github.com/kdPark0723/koa-middleware-adapter/issues",
"email": "kdpark023@gmail.com"
},
"peerDependencies": {
"koa": "^2.11.0",
"@types/koa": "^2.13.4"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-import": "^2.20.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^8.0.8",
"typescript": "^3.4.3"
}
}