-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "@hearit-io/redis-channels",
"version": "1.2.2",
"description": "Redis pre-sharded chanells implementation",
"main": "index.js",
"type": "commonjs",
"scripts": {
"coverage": "nyc --reporter=html --reporter=text npm run unit",
"lint": "npx standard --verbose | npx snazzy",
"test": "npm run lint && npm run unit",
"test:ci": "npm run lint && npm run unit -- --cov --coverage-report=lcovonly",
"test:report": "npm run lint && npm run unit:report",
"unit": "tap --100 --timeout=0 ./test/*.test.js ./test/cleanup/*.test.js",
"unit:junit": "tap-mocha-reporter xunit < out.tap > test/junit-testresults.xml",
"unit:report": "tap -J ./test/*.test.js ./test/cleanup/*.test.js --cov --coverage-report=html --coverage-report=cobertura | tee out.tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hearit-io/redis-channels.git"
},
"keywords": [
"redis",
"cluster",
"pre-sharded",
"channel",
"stream",
"message broker",
"produce",
"consume",
"pub/sub",
"websocket",
"SSE",
"eventsource"
],
"author": "Emil Usunov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hearit-io/redis-channels/issues"
},
"homepage": "https://github.com/hearit-io/redis-channels#readme",
"dependencies": {
"abstract-logging": "^2.0.1",
"ioredis": "^4.27.9",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=10.16.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"nyc": "^15.1.0",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tap": "^15.0.9",
"tap-mocha-reporter": "^5.0.1"
}
}