-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 984 Bytes
/
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
{
"name": "@t.voslar/ts-cache-decorator",
"version": "2.2.0",
"description": "Cache decorators with different strategies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --opts test/mocha.opts",
"build": "rm -rf dist && tsc -p .",
"dev": "tsc -p . -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voslartomas/ts-cache-decorators.git"
},
"keywords": [
"cache",
"decorator",
"typescript",
"redis"
],
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"@types/sinon": "^5.0.6",
"chai": "^4.2.0",
"jsdom": "^13.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"sinon": "^7.1.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/ioredis": "^4.0.13",
"hasha": "^3.0.0",
"ioredis": "^4.14.0",
"memcached-elasticache": "^1.1.1"
}
}