forked from tc39/proposal-array-from-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 852 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
{
"name": "proposal-array-from-async",
"private": true,
"description": "A TC39 proposal and specification for an Array.fromAsync method.",
"author": "J. S. Choi <jschoi@jschoi.org> (https://jschoi.org/)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-array-async-from.git"
},
"keywords": [
"proposal",
"tc39",
"array",
"async",
"iterator",
"iterator",
"stream",
"Array.fromAsync",
"Array.asyncFrom"
],
"scripts": {
"prebuild": "mkdir -p dist",
"build": "ecmarkup --verbose spec.html dist/index.html --css-out dist/ecmarkup.css --js-out dist/ecmarkup.js",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"ecmarkup": "^14.0.1"
},
"homepage": "https://github.com/tc39/proposal-array-async-from"
}