-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "super-cache",
"version": "1.0.0",
"description": "Flexible cache manager for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha -t 30000",
"coverage": "istanbul cover _mocha -- -t 30000",
"coverage2": "istanbul cover _mocha --report lcovonly -- -t 30000 -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"browser": "./build && open test_browser/test.html",
"prepublish": "npm run coverage2 && ./build"
},
"repository": {
"type": "git",
"url": "https://github.com/SuperID/super-cache.git"
},
"keywords": [
"cache"
],
"author": "Zongmin Lei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuperID/super-cache/issues"
},
"homepage": "https://github.com/SuperID/super-cache",
"dependencies": {
"async": "^2.1.4",
"debug": "^2.6.5",
"ioredis": "^2.5.0",
"memjs": "^0.10.0",
"node-localstorage": "^1.1.2"
},
"devDependencies": {
"async": "^2.1.2",
"browserify": "^14.1.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"should": "^11.1.2",
"uglify-js": "^3.0.0"
}
}