-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 825 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 825 Bytes
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
{
"name": "@halo-lab/iterable",
"type": "module",
"author": "Kapelianovych Yevhen",
"version": "0.0.1",
"license": "ISC",
"description": "A lazy sync and async Iterables",
"repository": {
"url": "https://github.com/Halo-Lab/iterable",
"type": "git"
},
"keywords": [
"Iterable",
"Iterator",
"AsyncIterable",
"AsyncIterator"
],
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./async": {
"types": "./async.d.ts",
"default": "./async.js"
}
},
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"index.js",
"async.d.ts",
"async.js",
"package.json"
],
"scripts": {
"test": "node --loader ts-node/esm --test index.test.ts"
},
"devDependencies": {
"ts-node": "^10.9.1"
}
}