forked from danitseitlin/redis-modules-sdk-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.92 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
{
"name": "redis-modules-sdk",
"version": "0.0.1",
"description": "A Software development kit for easier connection and execution of Redis Modules commands. ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register",
"rejson-module-tests": "npm run test tests/rejson.ts -- -- --host=127.0.0.1 --port=6379",
"rts-module-tests": "npm run test tests/rts.ts -- -- --host=127.0.0.1 --port=6379",
"redisearch-module-tests": "npm run test tests/redisearch.ts -- -- --host=127.0.0.1 --port=6379",
"redisgraph-module-tests": "npm run test tests/redisgraph.ts -- -- --host=127.0.0.1 --port=6379",
"redisgears-module-tests": "npm run test tests/redisgears.ts -- -- --host=127.0.0.1 --port=6379",
"redisbloom-module-tests": "npm run redisbloom-filter-tests && npm run redisbloom-topk-filter-tests && redisbloom-cuckoo-filter-tests && npm run redisbloom-cmk-filter-tests",
"redisbloom-filter-tests": "npm run test tests/redisbloom.ts -- -- --host=127.0.0.1 --port=6379",
"redisbloom-topk-filter-tests": "npm run test tests/redisbloom-topk.ts -- -- --host=127.0.0.1 --port=6379",
"redisbloom-cuckoo-filter-tests": "npm run test tests/redisbloom-cuckoo.ts -- -- --host=127.0.0.1 --port=6379",
"redisbloom-cmk-filter-tests": "npm run test tests/redisbloom-cmk.ts -- -- --host=127.0.0.1 --port=6379",
"redis-ai-tests": "npm run test tests/redis-ai.ts -- -- --host=127.0.0.1 --port=6379",
"redis-module-base-tests": "npm run test tests/module-base.ts",
"tests": "npm run rejson-module-tests && npm run rts-module-tests && npm run redisearch-module-tests && npm run redisgraph-module-tests && npm run redisgears-module-tests && npm run redisbloom-module-tests && npm run redis-ai-tests",
"pre-deploy": "npm run build",
"deploy": "npm-deploy redis-modules-sdk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danitseitlin/redis-modules-sdk.git"
},
"keywords": [
"redis-modules-sdk",
"development-kit",
"redis",
"redisbloom",
"redisgraph",
"redisjson",
"rejson",
"redisgears",
"rts",
"redistimeseries",
"redisearch",
"typescript",
"nodejs"
],
"author": "Dani Tseitlin",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/danitseitlin/redis-modules-sdk/issues"
},
"homepage": "https://github.com/danitseitlin/redis-modules-sdk#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/eslint": "^7.2.5",
"@types/ioredis": "^4.17.6",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.2.0",
"cli-argument-parser": "^0.3.4",
"eslint": "^7.14.0",
"mocha": "^8.2.0",
"npm-package-deployer": "^0.2.9",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"ioredis": "^4.17.3"
}
}