-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
99 lines (99 loc) · 3.23 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
{
"name": "koatty",
"version": "3.11.2",
"description": "Koa2 + Typescript = koatty. Use Typescript's decorator implement auto injection.",
"scripts": {
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
"build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
"build:js": "del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js",
"build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api",
"build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
"eslint": "eslint --ext .ts,.js ./",
"lock": "npm i --package-lock-only",
"prepublishOnly": "npm test && npm run build && git push --follow-tags origin",
"prerelease": "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"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinkkoa/koatty.git"
},
"engines": {
"node": ">12.0.0"
},
"author": {
"name": "richenlin",
"email": "richenlin@gmail.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/thinkkoa/koatty/issues"
},
"homepage": "https://github.com/thinkkoa/koatty",
"maintainers": [
{
"name": "richenlin",
"email": "richenlin@gmail.com"
}
],
"devDependencies": {
"@commitlint/cli": "^18.x.x",
"@commitlint/config-conventional": "^18.x.x",
"@microsoft/api-documenter": "^7.x.x",
"@microsoft/api-extractor": "^7.x.x",
"@rollup/plugin-json": "^6.x.x",
"@types/formidable": "^3.x.x",
"@types/jest": "^29.x.x",
"@types/koa": "^2.x.x",
"@types/koa__router": "^12.x.x",
"@types/node": "^20.x.x",
"@types/ws": "^8.x.x",
"@typescript-eslint/eslint-plugin": "^6.x.x",
"@typescript-eslint/parser": "^6.x.x",
"conventional-changelog-cli": "^4.x.x",
"copyfiles": "^2.x.x",
"del-cli": "^5.x.x",
"eslint": "^8.x.x",
"eslint-plugin-jest": "^27.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-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": {
"koa": "~2.15.0",
"koatty_config": "~1.1.6",
"koatty_container": "~1.8.10",
"koatty_core": "~1.9.0",
"koatty_exception": "~1.3.2",
"koatty_lib": "~1.3.4",
"koatty_loader": "~1.1.0",
"koatty_logger": "~2.1.4",
"koatty_proto": "~1.1.12",
"koatty_router": "~1.9.0",
"koatty_serve": "~2.1.2",
"koatty_trace": "~1.12.2",
"koatty_validation": "~1.3.2"
}
}