forked from havsar/node-ts-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.21 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
{
"name": "@hokify/node-ts-cache-lru-storage",
"version": "2.0.1",
"description": "Simple and extensible caching module supporting decorators",
"keywords": [
"node",
"nodejs",
"cache",
"typescript",
"ts",
"caching",
"memcache",
"memory-cache",
"redis-cache",
"redis",
"file-cache",
"node-cache",
"ts-cache"
],
"homepage": "https://github.com/hokify/node-ts-cache/tree/master/storages/lru#readme",
"bugs": {
"url": "https://github.com/hokify/node-ts-cache/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hokify/node-ts-cache.git"
},
"license": "MIT",
"author": "Simon Tretter <[email protected]>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p .",
"clean": "git clean -fdx src",
"dev": "tsc -p . -w",
"prepublishOnly": "tsc -p .",
"test": "mocha --loader=ts-node/esm test/**/*.test.ts"
},
"dependencies": {
"@hokify/node-ts-cache": "^6.0.1",
"lru-cache": "^6.0.0"
},
"devDependencies": {
"@types/lru-cache": "^5.1.1"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "c938eba762060f940a34bc192bec03bc76ea4017"
}