-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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": "co-reduce-any",
"version": "1.0.3",
"description": "Reduce anything in Co-like manner",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/* --recursive",
"coverage": "istanbul cover node_modules/.bin/_mocha -- test/* --recursive",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lajw/co-reduce-any.git"
},
"engines": {
"node": ">=4.6.0"
},
"keywords": [
"co",
"reduce",
"any",
"foreach",
"stream",
"map",
"set",
"array",
"object",
"generator",
"promise",
"asynchronous"
],
"author": "Lukasz A.J. Wrona <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lajw/co-reduce-any/issues"
},
"homepage": "https://github.com/lajw/co-reduce-any#readme",
"dependencies": {
"typical": "^2.6.0"
},
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"stream-array": "^1.1.2"
}
}