-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.51 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "koatty_trace",
"version": "1.13.1",
"description": "Full link tracking and error interception for koatty.",
"scripts": {
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
"build:cp": "node scripts/postBuild && npx copyfiles package.json LICENSE README.md dist/",
"build:js": "npx rollup --bundleConfigAsCjs -c .rollup.config.js",
"build:doc": "npx api-documenter markdown --input temp --output docs/api",
"build:dts": "npx tsc && npx api-extractor run --local --verbose",
"eslint": "eslint --ext .ts,.js ./",
"lock": "npx del-cli --force node_modules && npm i --package-lock-only && npx pnpm i",
"prepublishOnly": "npm test && npm run build && git push --follow-tags origin",
"prerelease": "npm run lock && npm test && npm run build",
"release": "standard-version",
"release:pre": "npm run release -- --prerelease",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"test": "npm run eslint && jest --passWithNoTests",
"test:cov": "jest --collectCoverage --detectOpenHandles",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koatty/koatty_trace.git"
},
"keywords": [
"web",
"typescript",
"framework",
"mvc",
"koa2",
"restful",
"agile",
"koatty_trace",
"koatty"
],
"engines": {
"node": ">10.0.0"
},
"author": {
"name": "richenlin",
"email": "richenlin@gmail.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/koatty/koatty_trace/issues"
},
"homepage": "https://github.com/koatty/koatty_trace",
"maintainers": [
{
"name": "richenlin",
"email": "richenlin@gmail.com"
}
],
"devDependencies": {
"@commitlint/cli": "^19.x.x",
"@commitlint/config-conventional": "^19.x.x",
"@grpc/grpc-js": "^1.x.x",
"@microsoft/api-documenter": "^7.x.x",
"@microsoft/api-extractor": "^7.x.x",
"@rollup/plugin-commonjs": "^28.x.x",
"@rollup/plugin-json": "^6.x.x",
"@rollup/plugin-node-resolve": "^15.x.x",
"@types/jest": "^29.x.x",
"@types/koa": "^2.x.x",
"@types/koa-compose": "^3.x.x",
"@types/lodash": "^4.x.x",
"@types/node": "^22.x.x",
"@types/on-finished": "^2.x.x",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.x.x",
"@typescript-eslint/eslint-plugin": "^8.x.x",
"@typescript-eslint/parser": "^8.x.x",
"conventional-changelog-cli": "^5.x.x",
"eslint": "^8.x.x",
"eslint-plugin-jest": "^28.x.x",
"husky": "^4.x.x",
"jest": "^29.x.x",
"jest-html-reporters": "^3.x.x",
"reflect-metadata": "^0.x.x",
"rollup": "^4.x.x",
"rollup-plugin-delete": "^2.x.x",
"rollup-plugin-typescript2": "^0.x.x",
"standard-version": "^9.x.x",
"ts-jest": "^29.x.x",
"ts-node": "^10.x.x",
"tslib": "^2.x.x",
"typescript": "^5.x.x"
},
"dependencies": {
"koatty_container": "^1.x.x",
"koatty_core": "^1.x.x",
"koatty_exception": "^1.x.x",
"koatty_lib": "^1.x.x",
"koatty_logger": "^2.x.x",
"opentracing": "^0.14.7",
"uuid": "^9.0.1"
},
"peerDependencies": {
"koatty_container": "^1.x.x",
"koatty_core": "^1.x.x",
"koatty_exception": "^1.x.x",
"koatty_lib": "^1.x.x",
"koatty_logger": "^2.x.x"
}
}