-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.37 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
{
"name": "machinepack-redis",
"version": "2.0.7",
"description": "Structured Node.js bindings for Redis.",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test/*.js --timeout 5000 --slow 2000",
"posttest": "npm run lint",
"lint": "node ./node_modules/eslint/bin/eslint machines index.js"
},
"keywords": [
"Redis",
"machines",
"machinepack"
],
"repository": {
"type": "git",
"url": "git+https://github.com/treelinehq/machinepack-redis.git"
},
"author": "The Sails Company",
"contributors": [
{
"name": "Luis Lobo Borobia",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"async": "2.6.4",
"flaverr": "^1.9.2",
"machine": "^15.2.2",
"redis": "3.1.1"
},
"devDependencies": {
"eslint": "4.11.0",
"mocha": "3.0.2"
},
"engines": {
"node": ">=6.0"
},
"machinepack": {
"friendlyName": "Redis",
"machineDir": "machines/",
"machines": [
"create-manager",
"destroy-manager",
"get-connection",
"create-connection-url",
"release-connection",
"get-cached-value",
"cache-value",
"destroy-cached-values"
],
"implements": {
"connectable": "1.0",
"cache": "1.0-rc1"
},
"testsUrl": "https://travis-ci.org/treelinehq/machinepack-redis"
}
}