-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 918 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
{
"description": "A cache module for node.js that uses a two-level cache (in-memory cache for recently accessed data plus Redis for distributed caching) with some extra features to avoid cache stampedes and thundering herds.",
"dependencies": {
"async": "~3.2.6",
"lock": "~1.1.0",
"memory-cache": "~0.2.0",
"redis": "~3.1.0"
},
"devDependencies": {
"coveralls": "*",
"mocha": "*",
"nyc": "*"
},
"homepage": "https://github.com/mediocre/petty-cache",
"keywords": [
"cache",
"lock",
"mutex",
"redis",
"semaphore"
],
"license": "Apache-2.0",
"main": "index.js",
"name": "petty-cache",
"scripts": {
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test": "mocha --exit --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/mediocre/petty-cache.git"
},
"version": "3.4.0"
}