-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.94 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
{
"name": "@tng/koa-controller",
"version": "2.0.0",
"description": "Write koa http server with koa-controller by decorator feature in typescript.",
"engines": {
"node": ">=20"
},
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"build": "node scripts/build.mjs",
"lint": "eslint src",
"prepack": "npm run build",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "mocha",
"test:coverage": "c8 --reporter=text-summary --reporter=html --reporter=lcov mocha"
},
"dependencies": {
"ajv": "^8.20.0",
"debug": "^4.4.3",
"glob": "^13.0.6",
"http-errors": "^2.0.1",
"koa-router": "^14.0.0",
"lodash": "^4.18.1",
"opentracing": "^0.14.7"
},
"devDependencies": {
"@types/debug": "^4.1.13",
"@types/http-errors": "^2.0.5",
"@types/koa": "^3.0.3",
"@types/koa-bodyparser": "^4.3.13",
"@types/koa-router": "^7.4.9",
"@types/lodash": "^4.17.24",
"@types/mocha": "^10.0.10",
"@types/node": "^26.1.1",
"c8": "^11.0.0",
"conventional-changelog": "^8.1.0",
"conventional-changelog-angular": "^9.2.1",
"conventional-recommended-bump": "^12.1.0",
"eslint": "^10.7.0",
"koa": "^3.2.1",
"koa-bodyparser": "^4.4.1",
"mocha": "^11.7.6",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0"
},
"author": {
"name": "Orange Mi",
"email": "orangemiwj@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/teambition/koa-controller.git"
},
"homepage": "https://github.com/teambition/koa-controller#readme",
"bugs": {
"url": "https://github.com/teambition/koa-controller/issues"
},
"packageManager": "pnpm@10.11.0",
"files": [
"lib"
],
"license": "MIT"
}