-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
72 lines (72 loc) · 1.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sails-redis",
"version": "1.1.0-1",
"description": "A lightweight Redis adapter for Sails / Node.js apps. Useful for caching.",
"author": "The Sails Company",
"contributors": [
{
"name": "vanetix",
"email": " <[email protected]>"
},
{
"name": "Matt McFarland",
"email": "[email protected]"
},
{
"name": "Cody Stoltman",
"email": "[email protected]"
},
{
"name": "Greg Thornton",
"email": "[email protected]"
},
{
"name": "Carlo DiCelico",
"email": "[email protected]"
},
{
"name": "Ryan Clough",
"email": "[email protected]"
},
{
"name": "Mike McNeil",
"email": "[email protected]"
}
],
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --reporter spec test/*.js",
"posttest": "npm run lint",
"lint": "node ./node_modules/eslint/bin/eslint *.js"
},
"repository": {
"type": "git",
"url": "https://github.com/balderdashy/sails-redis.git"
},
"keywords": [
"redis",
"cache",
"adapter",
"sails",
"sailsjs",
"sails.js",
"waterline"
],
"license": "MIT",
"engines": {
"node": "^6.0"
},
"dependencies": {
"machinepack-redis": "^2.0.0"
},
"devDependencies": {
"captains-log": "^2.0.1",
"eslint": "4.11.0",
"mocha": "3.0.2",
"waterline-adapter-tests": "^1.0.1"
},
"waterlineAdapter": {
"waterlineVersion": "^0.13.0",
"interfaces": [],
"features": []
}
}