-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "reattempt-promise-function",
"preferGlobal": false,
"version": "1.0.0",
"author": "Software Co-operative Ltd <[email protected]>",
"description": "Reattempt function calls that return promises when those promises reject.",
"contributors": [
{
"name": "Becky Conning",
"email": "[email protected]"
}
],
"scripts": {
"build": "./node_modules/browserify/bin/cmd.js ./src/reattempt-promise-function.js --standalone reattempt > ./bundle.js",
"test": "./node_modules/.bin/jasmine-node --verbose ./spec/reattempt-spec.js"
},
"main": "./src/reattempt-promise-function.js",
"repository": {
"type": "git",
"url": "https://github.com/beckyconning/reattempt-promise-function"
},
"keywords": [
"promise",
"gulp",
"grunt",
"http",
"retry",
"reattempt",
"timeout",
"delay"
],
"dependencies": {},
"analyze": true,
"devDependencies": {
"browserify": "^16.2.3",
"jasmine-node": "https://github.com/beckyconning/jasmine-node/tarball/Jasmine2.0",
"proxyquire": "^1.0.1",
"underscore": "^1.7.0"
},
"bundledDependencies": [],
"license": "MIT"
}