-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 973 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
{
"name": "recacheman-redis",
"version": "3.1.0",
"description": "Redis standalone caching library for Node.JS and also cache engine for Cacheman",
"author": "Jonathan Brumley <cayasso@gmail.com>",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "npm run test:typescript && nyc --reporter=html --reporter=text mocha --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git://github.com/aalfiann/recacheman-redis.git"
},
"keywords": [
"cache",
"redis",
"caching",
"store",
"ttl",
"cacheman"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.5.6",
"coveralls": "^3.1.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"snazzy": "^9.0.0",
"tsd": "^0.28.1"
},
"dependencies": {
"each": "1.2.1",
"redis": "^4.6.8"
}
}