-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.36 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
{
"name": "@jeengbe/cache",
"version": "3.3.0",
"description": "A strongly typed caching framework that works with any engine.",
"license": "MIT",
"files": [
"dist",
"src",
"!**/__tests__",
"!**/__utils__"
],
"keywords": [
"cache",
"framework",
"caching",
"redis",
"in-memory"
],
"main": "dist/index",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jeengbe/ts-cache.git"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "tsc"
},
"dependencies": {
"micromatch": "^4.0.7",
"ms": "^2.1.3"
},
"devDependencies": {
"@swc/jest": "^0.2.36",
"@testcontainers/redis": "^10.10.3",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.12",
"@types/micromatch": "^4.0.9",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ioredis": "^5.4.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"testcontainers": "^10.10.3",
"typescript": "^5.5.3"
},
"peerDependencies": {
"ioredis": "^5.3.2"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
}
}
}