-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "redis-filtered-sort",
"version": "2.3.0",
"description": "Exports LUA script, which is able to perform multi filter operations, as well as sorts",
"main": "./src/index.js",
"files": [
"src/*",
"lua/*"
],
"scripts": {
"test": "pnpm lint && mdep test run",
"lint": "eslint ./src ./test/suites",
"semantic-release": "semantic-release",
"prepare": "mdep install || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeomatic/redis-filtered-sort.git"
},
"keywords": [
"lua",
"redis",
"sort",
"filter",
"multi-sort"
],
"author": "Vitaly Aminev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/redis-filtered-sort/issues"
},
"homepage": "https://github.com/makeomatic/redis-filtered-sort#readme",
"peerDependencies": {
"ioredis": "4.x.x || 5.x.x"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@makeomatic/deploy": "^12.11.1",
"bluebird": "^3.7.2",
"c8": "^8.0.1",
"chai": "^4.3.8",
"cross-env": "^7.0.3",
"eslint-config-makeomatic": "^5.1.0",
"ioredis": "^4.28.2",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"rimraf": "^5.0.1",
"semantic-release": "^21.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cluster-key-slot": "^1.1.2",
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1"
}
}