-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "backoff-pool",
"version": "1.0.3",
"description": "A helper library to manage expotential backoff intervals of different resources.",
"keywords": [
"backoff",
"object pool",
"timer",
"interval"
],
"author": {
"name": "Beeno Tung",
"email": "aabbcc1241@yahoo.com.hk",
"url": "https://beeno-tung.surge.sh"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/backoff-pool.git"
},
"homepage": "https://github.com/beenotung/backoff-pool#readme",
"bugs": {
"url": "https://github.com/beenotung/backoff-pool/issues"
},
"main": "dist/src/core.js",
"types": "dist/src/core.d.ts",
"files": [
"dist/src"
],
"scripts": {
"test": "npm run mocha && npm run type-check",
"type-check": "tsc --noEmit",
"mocha": "ts-mocha test/core.test.ts",
"build": "tsc -p ."
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^16",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
}
}