-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 947 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
43
44
45
{
"name": "@twake/retry-promise",
"version": "0.0.1",
"description": "Promise with retry strategy module",
"keywords": [
"matrix",
"twake"
],
"homepage": "https://ci.linagora.com/publicgroup/oss/twake/tom-server",
"bugs": {
"url": "https://ci.linagora.com/publicgroup/oss/twake/tom-server/-/issues"
},
"repository": {
"type": "git",
"url": "https://ci.linagora.com/publicgroup/oss/twake/tom-server.git"
},
"license": "AGPL-3.0-or-later",
"author": [
{
"name": "Jordy Cabannes",
"email": "[email protected]"
}
],
"type": "module",
"exports": {
"import": "./dist/index.js"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"package.json",
"dist",
"*.md"
],
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"dependencies": {
"retry": "^0.13.1"
},
"devDependencies": {
"@types/retry": "^0.12.2"
}
}