forked from havsar/node-ts-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.54 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
{
"name": "@hokify/node-ts-cache-redis-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/redis#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 <simon.tretter@hokify.com>",
"contributors": [
"Himmet Avsar <avsar.himmet1@gmail.com>"
],
"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 .",
"tdd": "mocha --loader=ts-node/esm -w",
"tdd-debug-brk": "mocha --loader=ts-node/esm --inspect-brk",
"test": "mocha --loader=ts-node/esm test/**/*.test.ts"
},
"dependencies": {
"@hokify/node-ts-cache": "^6.0.1",
"bluebird": "3.7.2",
"redis": "^3.1.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/proxyquire": "1.3.28",
"@types/redis": "^2.8.32",
"@types/sinon": "10.0.6",
"redis-mock": "^0.56.0",
"sinon": "12.0.1"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "c938eba762060f940a34bc192bec03bc76ea4017"
}