-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.27 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
{
"name": "koa-api-builder",
"description": "koa api builder to create koa-router apis easier",
"keywords": [
"koa",
"middleware",
"route",
"router",
"api",
"builder"
],
"version": "0.2.4",
"author": "Leonardo Silveira <sombriks@gmail.com>",
"contributors": [
"Leonardo Silveira <sombriks@gmail.com>"
],
"homepage": "https://github.com/sombriks/koa-api-builder",
"repository": {
"type": "git",
"url": "https://github.com/sombriks/koa-api-builder.git"
},
"bugs": {
"url": "https://github.com/koajs/koa-api-builder/issues"
},
"license": "MIT",
"main": "lib/api-builder.cjs",
"dependencies": {
"@koa/router": "^12.0.0",
"methods": "^1.1.2"
},
"devDependencies": {
"c8": "^8.0.1",
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0"
},
"engines": {
"node": ">= 14"
},
"files": [
"lib"
],
"scripts": {
"lint": "eslint --fix \"lib/**\"",
"pretest": "npm run lint",
"test": "mocha lib",
"test:coverage": "c8 npm run test"
},
"c8": {
"exclude": [
"lib/**.spec.mjs",
".eslintrc.cjs"
]
}
}