-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "redchannel",
"version": "2.0.3",
"description": "Simplified pub/sub messaging with Redis",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib/* && tsc",
"lint": "tslint -p tsconfig.json -c tslint.json src/**/*.ts",
"lint:types": "tsc - noEmit",
"prepublish": "npm run build",
"test": "mocha -r ts-node/register test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aranwmurphy/redchannel.git"
},
"keywords": [
"pub",
"fire-and-forget",
"sub",
"pubsub",
"redis",
"simplified",
"messaging",
"typescript"
],
"author": "Aran Murphy <aranwmurphy@gmail.com> (https://github.com/aranwmurphy)",
"license": "MIT",
"bugs": {
"mail": "aranwmurphy@gmail.com",
"url": "https://github.com/aranwmurphy/redchannel/issues"
},
"homepage": "https://github.com/aranwmurphy/redchannel#readme",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"files": [
"lib"
],
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/ioredis": "^4.17.5",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.8",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"dependencies": {
"ioredis": "^4.17.3"
}
}