petty-cache 3.5.0 → 3.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,36 +1,34 @@
1
1
  {
2
- "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.",
3
- "dependencies": {
4
- "async": "~3.2.6",
5
- "lock": "~1.1.0",
6
- "memory-cache": "~0.2.0",
7
- "redis": "~3.1.0"
8
- },
9
- "devDependencies": {
10
- "@eslint/js": "*",
11
- "globals": "*",
12
- "coveralls": "*",
13
- "mocha": "*",
14
- "nyc": "*"
15
- },
16
- "homepage": "https://github.com/mediocre/petty-cache",
17
- "keywords": [
18
- "cache",
19
- "lock",
20
- "mutex",
21
- "redis",
22
- "semaphore"
23
- ],
24
- "license": "Apache-2.0",
25
- "main": "index.js",
26
- "name": "petty-cache",
27
- "scripts": {
28
- "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
29
- "test": "mocha --exit --reporter spec"
30
- },
31
- "repository": {
32
- "type": "git",
33
- "url": "https://github.com/mediocre/petty-cache.git"
34
- },
35
- "version": "3.5.0"
2
+ "dependencies": {
3
+ "async": "~3.2.6",
4
+ "lock": "~1.1.0",
5
+ "memory-cache": "~0.2.0",
6
+ "redis": "~3.1.0"
7
+ },
8
+ "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.",
9
+ "devDependencies": {
10
+ "@eslint/js": "*",
11
+ "globals": "*"
12
+ },
13
+ "homepage": "https://github.com/stores-com/petty-cache",
14
+ "keywords": [
15
+ "cache",
16
+ "lock",
17
+ "mutex",
18
+ "redis",
19
+ "semaphore"
20
+ ],
21
+ "license": "MIT",
22
+ "main": "index.js",
23
+ "name": "petty-cache",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/stores-com/petty-cache.git"
27
+ },
28
+ "scripts": {
29
+ "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",
30
+ "test": "node --test --test-force-exit --test-reporter=spec",
31
+ "test:only": "node --test --test-force-exit --test-only --test-reporter=spec"
32
+ },
33
+ "version": "3.7.0"
36
34
  }