generated from legendecas/tc39-proposal
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 1023 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": "proposal-async-context",
"private": true,
"version": "1.0.0",
"description": "Async Context proposal for JavaScript",
"scripts": {
"build": "npm run build-loose -- --strict",
"build-loose": "mkdir -p build && ecmarkup --load-biblio @tc39/ecma262-biblio --verbose --lint-spec spec.html build/index.html",
"watch": "npm run build-loose -- --watch",
"lint": "tsc -p tsconfig.json",
"test": "mocha"
},
"repository": "legendecas/proposal-async-context",
"keywords": [
"async",
"context",
"async-context",
"zone",
"tc39",
"javascript",
"ecmascript",
"spec"
],
"author": "Chengzhong Wu <legendecas@gmail.com>",
"license": "CC0-1.0",
"devDependencies": {
"@esbuild-kit/cjs-loader": "2.4.1",
"@esbuild-kit/esm-loader": "2.5.4",
"@tc39/ecma262-biblio": "^2.1.2674",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"ecmarkup": "^18.2.0",
"mocha": "10.2.0",
"prettier": "2.8.7",
"typescript": "4.9.4"
}
}