forked from darsee/seneca-memcached-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 778 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
{
"name": "seneca-memcached-cache",
"version": "0.2.0",
"description": "memcached plugin for seneca",
"main": "memcached-cache.js",
"scripts": {
"test": "node_modules/.bin/mocha test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/darsee/seneca-memcached-cache.git"
},
"keywords": [
"seneca",
"cache",
"memcached",
"plugin"
],
"contributors": [
"Richard Rodger (http://richardrodger.com/)",
"Seamus D'Arcy"
],
"license": "MIT",
"dependencies": {
"lodash": "~2.4.1",
"memcached": "~2.2.0"
},
"devDependencies": {
"mocha": "~1.20.1",
"seneca": "plugin",
"seneca-cache-test": "~0.1.2"
},
"files":[
"memcached-cache.js",
"README.md",
"LICENSE.txt"
]
}