-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
32 lines (32 loc) · 892 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
{
"name": "proposal-array-from-async",
"private": true,
"description": "A TC39 proposal and specification for an Array.fromAsync method.",
"author": "J. S. Choi <[email protected]> (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 --load-biblio @tc39/ecma262-biblio --verbose spec.html dist/index.html --assets-dir dist/",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@tc39/ecma262-biblio": "2.1.2462",
"ecmarkup": "^18.1.0"
},
"homepage": "https://github.com/tc39/proposal-array-async-from"
}