-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1019 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
{
"name": "set-interval-manager",
"version": "1.0.0",
"description": "A utility class for managing intervals created by setInterval",
"keywords": [
"setInterval",
"clearInterval",
"interval",
"utility",
"manager"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "tsc",
"release": "pnpm run build && changeset publish",
"test": "jest"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"tsup": "^6.7.0",
"typescript": "^4.5.4"
},
"license": "MIT",
"author": "Ademílson F. Tonato - @ftonato",
"homepage": "https://github.com/ftonato/set-interval-manager#readme",
"bugs": {
"url": "https://github.com/ftonato/set-interval-manager/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ftonato/set-interval-manager.git"
}
}