-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.53 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.53 KB
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
{
"name": "@jeengbe/cache",
"version": "7.0.0",
"description": "A strongly typed caching framework that works with any engine.",
"keywords": [
"cache",
"framework",
"caching",
"redis",
"in-memory"
],
"repository": {
"type": "git",
"url": "https://github.com/jeengbe/ts-cache.git"
},
"license": "MIT",
"main": "dist/index",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"!**/*.spec.*",
"!**/__snapshots__"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ms": "^2.1.3"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@swc/core": "^1.13.4",
"@swc/jest": "^0.2.39",
"@testcontainers/redis": "^11.5.1",
"@tsconfig/node20": "^20.1.6",
"@types/jest": "^30.0.0",
"@types/micromatch": "^4.0.9",
"@types/ms": "^2.1.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"ioredis": "^5.7.0",
"jest": "^30.0.5",
"micromatch": "^4.0.8",
"prettier": "^3.6.2",
"testcontainers": "^11.5.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"peerDependencies": {
"ioredis": "^5.3.2",
"micromatch": "^4.0.8"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"micromatch": {
"optional": true
}
}
}