forked from mickhansen/retry-as-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "retry-as-promised",
"version": "3.2.0",
"description": "Retry a failed promise",
"main": "index.js",
"scripts": {
"test": "PROMISE_TYPE=bluebird npm run test-raw && PROMISE_TYPE=q npm run test-raw",
"test-raw": "cross-env DEBUG=retry-as-promised* ./node_modules/.bin/mocha --check-leaks --colors -t 10000 --reporter spec test/promise.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mickhansen/retry-as-promised.git"
},
"keywords": [
"retry",
"promise",
"bluebird"
],
"author": "Mick Hansen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mickhansen/retry-as-promised/issues"
},
"homepage": "https://github.com/mickhansen/retry-as-promised",
"dependencies": {
"any-promise": "^1.3.0"
},
"files": [],
"devDependencies": {
"bluebird": "^3.5.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"moment": "^2.10.6",
"q": "^1.5.1",
"sinon": "^7.0.0",
"sinon-chai": "^3.2.0"
}
}