-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
32 lines (32 loc) · 892 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
{
"name": "cacheman-mongo",
"version": "1.0.4",
"description": "MongoDB standalone caching library for Node.JS and also cache engine for cacheman",
"author": "Jonathan Brumley <[email protected]>",
"main": "./node/index",
"scripts": {
"test": "make test",
"prepublish": "make"
},
"repository": {
"type": "git",
"url": "git://github.com/cayasso/cacheman-mongo.git"
},
"keywords": [ "cache", "mongodb", "caching", "mongo", "store", "ttl", "cacheman" ],
"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",
"mocha": "*",
"pre-commit": "^1.1.2"
},
"dependencies": {
"mongodb": "^2.1.4",
"mongodb-uri": "^0.9.7",
"thunky": "^0.1.0"
},
"pre-commit": [ "test" ]
}