forked from senecajs/seneca-redis-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 931 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
{
"name": "seneca-redis-store",
"version": "0.0.6",
"description": "Redis storage layer for Seneca framework",
"main": "redis-store.js",
"scripts": {
"test": "node_modules/.bin/mocha test/*.test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/bamse16/seneca-redis-store.git"
},
"keywords": [
"seneca",
"data",
"store",
"redis",
"plugin"
],
"author": "Marius Ursache",
"contributors": [
"Peter Elger (http://peterelger.com/)",
"Alan Bradley (http://gangleri.net/)",
"Richard Rodger (http://richardrodger.com/)",
"Chico Charlesworth (https://twitter.com/ccharlesworth)"
],
"license": "MIT",
"dependencies": {
"redis": "~0.10.0",
"node-uuid": "~1.4.1",
"underscore": "~1.6.0"
},
"peerDependencies": {
"seneca": "*"
},
"devDependencies": {
"seneca": "~0.5.15",
"mocha": "~1.17.1",
"async": "~0.2.10"
}
}