-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1003 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
46
47
48
{
"name": "tolerance",
"version": "1.0.0",
"description": "This module wraps a function with retry functionality by passing a timeout. So the function will be more tolerant.",
"private": false,
"main": "index.js",
"engines": {
"node": ">=0.6.x",
"npm": ">=1.1.x"
},
"directories": {},
"dependencies": {
"retry": ">=0.6.0"
},
"devDependencies": {
"mocha": "3.x.x",
"expect.js": ">=0.1.2"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git@github.com:adrai/tolerance.git"
},
"keywords": [
"tolerance",
"tolerate",
"retry",
"timeout",
"wrap"
],
"author": "adrai",
"maintainers": [
{
"name": "adrai",
"email": "adriano@raiano.ch"
}
],
"homepage": "https://github.com/adrai/tolerance",
"bugs": {
"url": "https://github.com/adrai/tolerance/issues"
},
"license": {
"type": "MIT",
"url": "https://raw.github.com/adrai/tolerance/master/licence"
}
}