-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
43
44
45
46
47
48
49
50
{
"name": "always-promise",
"version": "1.1.1",
"description": "Promisify, basically, everything. Generator function, callback-style or synchronous function; sync function that returns child process, stream or observable; directly passed promise, stream or child process.",
"repository": "hybridables/always-promise",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "standard && node test.js"
},
"dependencies": {
"merz": "*",
"redolent": "^1.0.0"
},
"devDependencies": {
"assertit": "^0.1.0",
"is-buffer": "^1.1.0",
"promise": "^7.0.4",
"semver": "^5.0.3"
},
"files": [
"index.js"
],
"keywords": [
"always",
"api",
"async",
"asynchronous",
"bluebird",
"callback",
"cb",
"child",
"child-process",
"control",
"convert",
"create",
"flow",
"function",
"generator",
"make",
"process",
"promise",
"promises",
"stream",
"sync",
"synchronous",
"transform"
]
}