-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.36 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
46
47
48
49
50
{
"name": "@lorenzofox3/for-await",
"version": "0.2.1",
"description": "operators and stream utilities for async iterators",
"engines": {
"node": ">=9.3.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/lorenzofox3/for-await.git"
},
"main": "./dist/bundle/index",
"module": "./dist/bundle/module.js",
"types": "./dist/bundle/index.d.ts",
"scripts": {
"build:clean": "rm -rf ./dist && mkdir -p ./dist/bundle ./dist/declarations",
"build:bundle": "rollup -c ./rollup/build.js && cp ./src/index.d.ts ./dist/declarations/",
"build": "npm run build:clean && npm run build:bundle",
"test": "rollup -c ./rollup/test.js --output.format cjs | node",
"test:ci": "rollup -c ./rollup/test.js --output.format cjs | node | tap-diff",
"example:node": "rollup -c ./examples/scripts/rollup.node.js | node"
},
"files": [
"dist/bundle",
"dist/declarations"
],
"keywords": [
"stream",
"for-await",
"reactive-programming",
"iterator",
"async-iterator",
"asyncIterator",
"generator",
"async"
],
"author": "Laurent Renard",
"license": "MIT",
"devDependencies": {
"rollup": "^1.27.14",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tap-diff": "^0.1.1",
"zora": "^3.1.8"
},
"dependencies": {}
}