forked from havsar/node-ts-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
{
"name": "node-ts-cache",
"version": "3.2.0",
"description": "Simple and extensible caching module supporting decorators",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"tdd": "mocha -w",
"tdd-debug-brk": "mocha --inspect-brk",
"build": "tsc -p .",
"prepublish": "tsc -p .",
"clean": "git clean -fdx src",
"prepare": "tsc -p .",
"dev": "tsc -p . -w"
},
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/havsar/node-ts-cache.git"
},
"keywords": [
"node",
"nodejs",
"cache",
"typescript",
"ts",
"caching",
"memcache",
"memory-cache",
"redis-cache",
"redis",
"cache",
"file-cache",
"node-cache",
"ts-cache"
],
"author": "Himmet Avsar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/havsar/node-ts-cache/issues"
},
"homepage": "https://github.com/havsar/node-ts-cache#readme",
"dependencies": {
"@types/bluebird": "3.5.27",
"@types/node": "10.14.17",
"@types/redis": "^2.8.13",
"bluebird": "3.5.5",
"redis": "^2.8.0"
},
"devDependencies": {
"@types/mocha": "5.2.5",
"@types/proxyquire": "1.3.28",
"@types/sinon": "5.0.5",
"mocha": "5.2.0",
"proxyquire": "2.1.3",
"sinon": "7.4.2",
"ts-node": "8.3.0",
"typescript": "3.6.2"
},
"optionalDependencies": {}
}