-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "more-promises",
"version": "1.1.1",
"description": "Helpful functions that deal with promises. Avoid fast-failing and wait for all promises to be settled, iterate over arrays and objects, useful promise generation functions, promisify and callbackify.",
"main": "lib/index.js",
"scripts": {
"test": "script/test",
"watch": "script/watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connected-world-services/more-promises.git"
},
"keywords": [
"promise",
"settle",
"bail",
"iterate",
"reflect",
"promisify",
"callbackify",
"nodify",
"delay",
"timeout"
],
"author": "Tyler Akins <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/connected-world-services/more-promises/issues"
},
"homepage": "https://github.com/connected-world-services/more-promises#readme",
"devDependencies": {
"codecov": "~1.0.1",
"eslint": "~3.15.0",
"istanbul": "~0.4.5",
"jasmine": "~2.5.3",
"jasmine-test-helpers": "~1.1.2"
}
}