-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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": "retryable-promise",
"version": "0.2.1",
"description": "A simple promise retry implementation that will retry a promise X times before rejecting.",
"main": "lib/retryable-promise.js",
"scripts": {
"test": "node_modules/testem/testem.js",
"test-ci": "node_modules/testem/testem.js ci",
"mocha": "node_modules/mocha/bin/mocha --require tests/_helper.js tests/*.js",
"build-test": "rm -rf test && node_modules/broccoli-cli/bin/broccoli build test && node_modules/browserify/bin/cmd.js lib/retryable-promise.js --standalone retryablePromise > test/retryable-promise.js",
"build-dist": "node_modules/browserify/bin/cmd.js lib/retryable-promise.js --standalone retryablePromise > dist/retryable-promise.js"
},
"repository": {
"type": "git",
"url": "git://github.com/poetic/retryable-promise"
},
"keywords": [
"promise",
"retry",
"es6"
],
"author": "Jake Craige <jake@poeticsystems.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/poetic/retryable-promise/issues"
},
"homepage": "https://github.com/poetic/retryable-promise",
"devDependencies": {
"broccoli": "^0.12.3",
"broccoli-cli": "0.0.1",
"broccoli-env": "0.0.1",
"broccoli-merge-trees": "^0.1.4",
"broccoli-static-compiler": "^0.1.4",
"browserify": "^5.11.2",
"chai": "^1.9.1",
"mocha": "^1.21.4",
"rsvp": "^3.0.13",
"testem": "^0.6.18"
}
}