-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 867 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
{
"name": "ts-async-iterator",
"version": "1.1.0",
"description": "Wrapper over JS iterator, which allows filter/map/etc with chaining",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kashesandr/async-iter.git"
},
"keywords": [
"iterator",
"iterable",
"wrapper",
"js",
"ts",
"javascript",
"typescript",
"async"
],
"author": "kashesandr",
"license": "MIT",
"bugs": {
"url": "https://github.com/kashesandr/async-iter/issues"
},
"homepage": "https://github.com/kashesandr/async-iter#readme",
"devDependencies": {
"@types/chai": "^4.3.7",
"@types/mocha": "^10.0.2",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}