-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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": "iterly",
"version": "0.6.3",
"description": "Composable iterator and async iterator tools, supporting old platforms without yield or async/await",
"main": "src/index.js",
"repository": "https://github.com/arccoza/iterly",
"keywords": [
"each",
"forEach",
"iter",
"iterator",
"async-iterator",
"asyncIterator",
"iterable",
"async-iterable",
"generator",
"async-generator",
"async",
"composable",
"map",
"filter",
"reduce"
],
"author": "Adrien de Pierres",
"license": "MIT",
"private": false,
"devDependencies": {
"benchmark": "^2.1.4",
"documentation": "^9.3.1",
"nyc": "^13.3.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"scripts": {
"test": "./node_modules/.bin/tape ./test/*.test.js",
"coverage": "./node_modules/.bin/nyc ./node_modules/.bin/tape ./test/*.test.js",
"doc": "./node_modules/.bin/documentation",
"readmedoc": "yarn doc readme ./src/index.js --section=API --config documentation.yaml"
},
"dependencies": {},
"files": [
"index.js",
"src/"
]
}