-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 950 Bytes
/
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
{
"name": "redis-live-collection",
"version": "0.2.1",
"description": "Redis-based realtime collection with compare-and-set support",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "deeplay-io/redis-live-collection",
"files": [
"src",
"lib"
],
"scripts": {
"clean": "rimraf lib es",
"test": "jest --passWithNoTests",
"build": "tsc -P tsconfig.build.json && cpr -f '\\.ts$' src lib",
"prepublishOnly": "npm test && npm run clean && npm run build"
},
"author": "Daniel Lytkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/ioredis": "^4.16.2",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"cpr": "^3.0.1",
"jest": "^26.0.1",
"nanoid": "^3.1.9",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"ioredis": "^4.17.1",
"rxjs": "^6.5.5"
}
}