This repository has been archived by the owner on Jul 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
86 lines (86 loc) · 4.71 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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",
"run-redis": "docker run -p 6379:6379 -d --rm redis && docker ps -a",
"run-redis-with-rejson-module": "docker run -p 6379:6379 -d --rm redislabs/rejson:edge && docker ps -a",
"run-redis-with-rts-module": "docker run -p 6379:6379 -d --rm redislabs/redistimeseries:edge && docker ps -a",
"run-redis-with-redisearch-module": "docker run -p 6379:6379 -d --rm redislabs/redisearch:edge && docker ps -a",
"run-redis-with-redisgraph-module": "docker run -p 6379:6379 -d --rm redislabs/redisgraph:edge && docker ps -a",
"run-redis-with-redisgears-module": "docker run -p 6379:6379 -d --rm redislabs/redisgears:latest && docker ps -a",
"run-redis-with-bloom-module": "docker run -p 6379:6379 -d --rm redislabs/rebloom:latest && docker ps -a",
"run-redis-with-redisai-module": "docker run -p 6379:6379 -d --rm redislabs/redisai:edge-cpu-bionic && docker ps -a",
"run-redis-with-ris-module": "docker run -p 6379:6379 -d --rm danitseitlin/redis-interval-sets && docker ps -a",
"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",
"redisbloom-tdigest-filter-tests": "npm run test tests/redisbloom-tdigest.ts -- -- --host=127.0.0.1 --port=6379",
"redis-ai-module-tests": "npm run test tests/redis-ai.ts -- -- --host=127.0.0.1 --port=6379",
"ris-module-tests": "npm run test tests/ris.ts -- -- --host=127.0.0.1 --port=6379",
"redis-module-base-tests": "npm run test tests/module-base.ts -- -- --host=127.0.0.1 --port=6379",
"start-redis-server-with-modules": "docker run --rm --name redis-mod-sdk -p 6379:6379 redislabs/redismod --port 6379 --loadmodule /usr/lib/redis/modules/redisai.so --loadmodule /usr/lib/redis/modules/redisbloom.so --loadmodule /usr/lib/redis/modules/redistimeseries.so --loadmodule /usr/lib/redis/modules/redisearch.so --loadmodule /usr/lib/redis/modules/redisgraph.so --loadmodule /usr/lib/redis/modules/rejson.so",
"tests": "npm run redisbloom-tdigest-filter-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",
"generate-docs": "typedoc --out docs ."
},
"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": "Apache 2.0",
"bugs": {
"url": "https://github.com/danitseitlin/redis-modules-sdk/issues"
},
"homepage": "https://github.com/danitseitlin/redis-modules-sdk#readme",
"devDependencies": {
"@microsoft/tsdoc": "0.13.2",
"@types/chai": "4.2.14",
"@types/eslint": "7.2.5",
"@types/ioredis": "4.28.10",
"@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",
"fs": "0.0.1-security",
"mocha": "9.2.0",
"npm-package-deployer": "0.2.9",
"ts-node": "9.0.0",
"typedoc": "0.22.11",
"typescript": "4.2.3"
},
"dependencies": {
"ioredis": "5.2.3"
}
}