-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 877 Bytes
/
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
{
"name": "koa-cachier",
"version": "1.0.5",
"description": "A Koa Middleware backed by a Redis-powered cache store",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "glob test/*.test.ts --cmd=\"node --import tsx --test\""
},
"author": "Tom S <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/UnKnoWn-Consortium/koa-cache.git"
},
"dependencies": {
"ioredis": "^5.3.2"
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/node": "^20.11.21",
"glob": "^10.3.10",
"koa": "^2.15.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}