forked from havsar/node-ts-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "node-ts-cache",
"version": "0.3.1",
"description": "Simple and extensible caching module supporting decorators",
"main": "src/index.js",
"scripts": {
"test": "mocha src/*.spec.js src/**/*.spec.js",
"tdd": "mocha -w src/*.spec.js src/**/*.spec.js",
"tdd-debug-brk": "mocha --inspect-brk src/**/*.spec.js",
"build": "tsc -p .",
"prepublish": "tsc -p .",
"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 <avsar.himmet1@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/havsar/node-ts-cache/issues"
},
"homepage": "https://github.com/havsar/node-ts-cache#readme",
"dependencies": {
"bluebird": "3.5.0",
"lodash": "^4.17.4",
"redis": "^2.7.0"
},
"devDependencies": {
"@types/bluebird": "3.5.5",
"@types/lodash": "^4.14.55",
"@types/mocha": "^2.2.40",
"@types/node": "^4.2.2",
"@types/redis": "^0.12.36",
"mocha": "^3.2.0",
"typescript": "^2.1.6"
}
}