-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "clache",
"version": "0.2.0",
"description": "pooled redis caching made easy",
"main": "index.js",
"dependencies": {
"cache-manager": "git://github.com/evanlucas/node-cache-manager",
"debug": "~1.0.2",
"sol-redis-pool": "~0.1.3"
},
"devDependencies": {
"blanket": "~1.1.6",
"coveralls": "~2.10.0",
"jostle": "~0.1.0",
"mocha": "~1.18.2",
"mocha-lcov-reporter": "0.0.1",
"should": "~4.0.4"
},
"scripts": {
"test": "mocha -R spec",
"cover": "mocha -r blanket -R json-cov | jostle",
"cover-html": "mocha -r blanket -R html-cov > cov.html",
"circle": "mkdir -p $CIRCLE_ARTIFACTS && mocha -r blanket -R html-cov > $CIRCLE_ARTIFACTS/coverage.html",
"coveralls": "mocha -r blanket -R mocha-lcov-reporter | coveralls"
},
"license": "MIT",
"keywords": [
"cache",
"redis",
"gaw"
],
"author": "Evan Lucas <evan@gawlabs.com>",
"repository": {
"type": "git",
"url": "https://github.com/GAWMiners/clache"
},
"bugs": {
"url": "https://github.com/GAWMiners/clache/issues"
},
"homepage": "https://github.com/GAWMiners/clache",
"config": {
"blanket": {
"pattern": "/lib/",
"data-cover-never": "node_modules"
}
},
"docs": {
"token": "130880dd46e2636fb09deca068aac8b183d4fd8e",
"install": "$ npm install --save clache",
"includes": [
"lib/index.js"
]
}
}