-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "callback-reduce",
"id": "callback-reduce",
"version": "1.1.0",
"description": "Callbacks made reducible",
"keywords": [
"callback",
"reduce",
"reducible",
"stream",
"promise",
"eventual"
],
"author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
"homepage": "https://github.com/Gozala/callback-reduce",
"repository": {
"type": "git",
"url": "https://github.com/Gozala/callback-reduce.git",
"web": "https://github.com/Gozala/callback-reduce"
},
"bugs": {
"url": "http://github.com/Gozala/callback-reduce/issues/"
},
"devDependencies": {
"test": "~0.6.0",
"repl-utils": "~2.0.1",
"reducers": "~2.0.0"
},
"main": "./callback.js",
"scripts": {
"test": "node test/index.js",
"repl": "node node_modules/repl-utils",
"postinstall": "npm dedup"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Gozala/callback-reduce/License.md"
}
],
"dependencies": {
"reducible": "~1.0.5",
"functional": "~1.0.0"
}
}