-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 962 Bytes
/
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
{
"name": "ho-iter",
"version": "0.3.0",
"description": "The iterator which takes iterators as arguments and returns an iterator",
"license": "MIT",
"repository": "blond/ho-iter",
"author": "Andrew Abramov <[email protected]> (github.com/blond)",
"keywords": [
"iterator",
"itarable",
"iter",
"higher",
"order",
"meta",
"multi",
"several",
"series",
"evenly",
"reverse"
],
"main": "index.js",
"files": [
"lib/**",
"index.js"
],
"engines": {
"node": ">= 4.0"
},
"dependencies": {
"is-error": "2.2.1",
"is-promise": "2.1.0",
"kind-of": "3.2.0",
"spread-args": "0.2.0"
},
"devDependencies": {
"ava": "^0.20.0",
"coveralls": "^2.11.9",
"eslint": "^3.1.1",
"eslint-config-pedant": "^0.9.0",
"nyc": "^10.0.0"
},
"scripts": {
"pretest": "eslint .",
"test": "nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}