-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "@boardgame.io/redis-pubsub",
"private": false,
"version": "0.0.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "Redis pub/sub adapter for boardgame.io",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"build": "tsc",
"test": "jest",
"fix": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.test.ts"
]
},
"funding": [
"https://github.com/boardgameio/boardgame.io?sponsor=1",
{
"type": "opencollective",
"url": "https://opencollective.com/boardgameio"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/boardgameio/redis-pubsub.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"boardgame.io",
"redis"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/boardgameio/redis-pubsub/issues"
},
"homepage": "https://github.com/boardgameio/redis-pubsub#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/redis": "^2.8.31",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-mockito": "^2.6.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5",
"@types/koa-router": "^7.4.4",
"boardgame.io": "^0.47.3"
},
"peerDependencies": {
"boardgame.io": ">=0.47.0",
"redis": ">=3.1.2"
}
}