forked from jiayihu/rx-polling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.44 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
{
"name": "rx-polling-alt",
"version": "1.1.1",
"description": "Polling library done with RxJS",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"lint": "eslint \"./index.ts\"",
"test": "jest",
"prepare": "npm run clean && npm run build",
"prepush": "npm run lint && npm test"
},
"repository": "https://github.com/jiayihu/rx-polling",
"keywords": [
"rxjs",
"polling",
"long-polling",
"network"
],
"author": "Jiayi Hu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/jest": "^19.2.2",
"@types/lodash": "^4.14.64",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"chalk": "^1.1.3",
"eslint": "^8.52.0",
"husky": "^0.13.3",
"jest": "^29.7.0",
"lodash": "^4.17.4",
"rimraf": "^2.6.1",
"rxjs": "^7.8.1",
"rxjs-tslint": "^0.1.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"rxjs": ">=5.5.0"
},
"jest": {
"testEnvironment": "jsdom",
"verbose": true,
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(test/.*\\.spec\\.(ts|js))$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"jest-environment-jsdom": "^29.7.0"
}
}