-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.33 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
{
"name": "retry-subscription",
"version": "0.4.0",
"description": "Automatically retry subscriptions with exponential backoff",
"keywords": [
"retry",
"backoff",
"watch",
"subscription",
"changes",
"changefeed",
"change-feed",
"async-iterable"
],
"repository": "deeplay-io/retry-subscription",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./ix": {
"types": "./lib/ix/index.d.ts",
"default": "./lib/ix/index.js"
}
},
"files": [
"ix",
"lib",
"src",
"!src/**/*.test.ts",
"!src/**/__tests__"
],
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"build": "tsc -P tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"author": "Daniel Lytkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.24",
"@types/lodash.isequal": "^4.0.0",
"jest": "^27.0.6",
"jest-mock-random": "^1.1.1",
"prettier": "^2.3.2",
"rimraf": "^2.6.3",
"ts-jest": "^27.0.4",
"typescript": "~4.3.2"
},
"dependencies": {
"abort-controller-x": "^0.4.0",
"ix": "^4.5.0 || ^5.0.0",
"lodash.isequal": "^4.0.0"
}
}