-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 964 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 964 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
{
"name": "mts_node_fetch",
"version": "0.0.1",
"description": "Demonstrate utilizing Iterator Cascade Callbacks with asynchronous fetch generator",
"main": "dist/index.mjs",
"devDependencies": {
"@types/node": "^20.8.6",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"demo": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-utilities/iterator-cascade-callbacks.git"
},
"keywords": [
"example",
"generator"
],
"author": "S0AndS0",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/javascript-utilities/iterator-cascade-callbacks/issues"
},
"dependencies": {
"@javascript-utilities/iterator-cascade-callbacks": "file:../../"
},
"homepage": "https://github.com/javascript-utilities/iterator-cascade-callbacks#readme",
"private": true
}