-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.74 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"author": "Guy Ellis <[email protected]>",
"bugs": {
"url": "https://github.com/guyellis/multi-level-cache/issues"
},
"contributors": [
"Robert Myers <[email protected]>",
"William Riley-Land <[email protected]>"
],
"dependencies": {
"async": "3.1.0",
"debug": "4.1.1",
"lodash": "4.17.15",
"node-cache": "4.2.1",
"redis": "2.8.0"
},
"description": "Manage local and remote caches with a single API",
"devDependencies": {
"eslint": "6.5.1",
"istanbul": "0.4.5",
"mocha": "6.2.2",
"pre-commit": "^1.0.6",
"sinon": "7.4.0"
},
"engines": {
"node": ">= 8.0.0"
},
"homepage": "https://github.com/guyellis/multi-level-cache",
"keywords": [
"cache",
"node",
"redis",
"memcached"
],
"license": "MIT",
"main": "index.js",
"name": "multi-level-cache",
"pre-commit": [
"pre-commit-update",
"lint",
"pre-commit-stash-save",
"coverage",
"post-commit-stash-pop",
"check-coverage"
],
"public": true,
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/guyellis/multi-level-cache.git"
},
"scripts": {
"check-coverage": "node_modules/.bin/istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100 ./coverage/coverage.json",
"coverage": "node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive",
"lint": "node_modules/.bin/eslint .",
"post-commit-stash-pop": "git stash pop",
"posttest": "node_modules/.bin/eslint .",
"pre-commit-stash-save": "git stash --keep-index",
"pre-commit-update": "npm update",
"test": "node_modules/.bin/mocha --recursive"
},
"version": "2.0.0"
}