-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
43 lines (43 loc) · 950 Bytes
/
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
{
"name": "cacheman",
"version": "2.2.1",
"description": "Small and efficient cache provider for Node.JS with In-memory, Redis and MongoDB engines",
"author": "Jonathan Brumley <cayasso@gmail.com>",
"main": "./node/index",
"scripts": {
"test": "make test",
"prepublish": "make"
},
"repository": {
"type": "git",
"url": "git://github.com/cayasso/cacheman.git"
},
"keywords": [
"cache",
"file",
"redis",
"memory",
"mongodb",
"caching",
"mongo",
"store",
"ttl",
"middleware",
"bucket"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"bluebird": "^3.1.5",
"mocha": "^2.4.4",
"pre-commit": "^1.1.2"
},
"dependencies": {
"cacheman-memory": "^1.1.0",
"ms": "^0.7.1"
}
}