-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.17 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
{
"name": "koatty_static",
"version": "1.3.0",
"description": "Static server Middleware for Koatty.",
"scripts": {
"build": "del-cli --force dist && tsc",
"eslint": "eslint --ext .ts,.js ./",
"lock": "npm i --package-lock-only",
"prepublishOnly": "npm test && npm run build",
"prerelease": "npm test && npm run build && git push --follow-tags",
"release": "npm run prepublishOnly && standard-version",
"test": "npm run eslint && jest --passWithNoTests"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/thinkkoa/koatty_static.git"
},
"keywords": [
"web",
"typescript",
"framework",
"mvc",
"koa2",
"restful",
"agile",
"koatty_static",
"thinkkoa"
],
"engines": {
"node": ">10.0.0"
},
"author": {
"name": "richenlin",
"email": "richenlin@gmail.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/thinkkoa/koatty_static/issues"
},
"homepage": "https://github.com/thinkkoa/koatty_static",
"maintainers": [
{
"name": "richenlin",
"email": "richenlin@gmail.com"
}
],
"devDependencies": {
"@commitlint/cli": "^17.x.x",
"@commitlint/config-conventional": "^17.x.x",
"@microsoft/api-documenter": "^7.x.x",
"@microsoft/api-extractor": "^7.x.x",
"@rollup/plugin-json": "^6.x.x",
"@types/jest": "^29.x.x",
"@types/koa": "^2.x.x",
"@types/koa-static-cache": "^5.x.x",
"@types/node": "^18.x.x",
"@typescript-eslint/eslint-plugin": "^5.x.x",
"@typescript-eslint/parser": "^5.x.x",
"conventional-changelog-cli": "^2.x.x",
"copyfiles": "^2.x.x",
"del-cli": "^4.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",
"rollup": "^3.x.x",
"rollup-plugin-typescript2": "^0.x.x",
"standard-version": "^9.x.x",
"ts-jest": "^29.x.x",
"ts-node": "^10.x.x",
"typescript": "^4.x.x"
},
"dependencies": {
"koa-static-cache": "^5.1.4",
"koatty_lib": "^1.x.x",
"lru-cache": "^10.1.0"
},
"peerDependencies": {
"koatty_lib": "^1.x.x"
}
}