-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 959 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
37
38
39
40
41
42
{
"name": "@pstg/smart-timer",
"version": "1.0.3",
"description": "Timer that saves requests by delaying emits when page is hidden",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/purestorage/smart-timer.git"
},
"homepage": "https://github.com/purestorage/smart-timer?tab=readme-ov-file#smart-timer",
"keywords": [
"timer",
"rxjs",
"requestsaving"
],
"author": {
"name": "Martin Vích",
"url": "https://github.com/czmavi"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.10",
"jest": "^29.7.0",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"peerDependencies": {
"rxjs": "^7.0.0 || ^6.0.0"
}
}