forked from makeomatic/redis-filtered-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "redis-filtered-sort",
"version": "2.2.1",
"description": "Exports LUA script, which is able to perform multi filter operations, as well as sorts",
"main": "./lib",
"engine": {
"node": ">= 7.6.0"
},
"scripts": {
"test": "./test/docker.sh",
"compile": "make all",
"prepublish": "npm run compile",
"postversion": "git push && npm publish && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeomatic/redis-filtered-sort.git"
},
"keywords": [
"lua",
"redis",
"sort",
"filter",
"multi-sort"
],
"author": "Vitaly Aminev <v@makeomatic.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/redis-filtered-sort/issues"
},
"homepage": "https://github.com/makeomatic/redis-filtered-sort#readme",
"peerDependencies": {
"ioredis": "2.x.x || 3.x.x"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.4.1",
"faker": "^4.1.0",
"ioredis": "^2.4.0",
"lodash": "^4.16.3",
"mocha": "^3.3.0"
},
"dependencies": {
"cluster-key-slot": "^1.0.6"
}
}