-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.22 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.22 KB
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
{
"dependencies": {
"async": "~3.2.6",
"lock": "~1.1.0",
"memory-cache": "~0.2.0",
"redis": "~3.1.0"
},
"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.",
"devDependencies": {
"@eslint/js": "*",
"globals": "*"
},
"homepage": "https://github.com/stores-com/petty-cache",
"keywords": [
"cache",
"lock",
"mutex",
"redis",
"semaphore"
],
"license": "MIT",
"main": "index.js",
"name": "petty-cache",
"repository": {
"type": "git",
"url": "git+https://github.com/stores-com/petty-cache.git"
},
"scripts": {
"coveralls": "node --test --test-force-exit --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info && coveralls < lcov.info",
"test": "node --test --test-force-exit --test-reporter=spec",
"test:only": "node --test --test-force-exit --test-only --test-reporter=spec"
},
"version": "3.7.0"
}