generated from tc39/template-for-proposals
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 911 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
{
"private": true,
"name": "template-for-proposals",
"description": "A repository template for ECMAScript proposals.",
"scripts": {
"build": "npm run build-loose -- --strict",
"build-loose": "node -e 'fs.mkdirSync(\"build\", { recursive: true })' && ecmarkup --load-biblio @tc39/ecma262-biblio --verbose spec.emu build/index.html --lint-spec",
"clean": "rm -rf out",
"format": "emu-format --write spec.emu",
"watch": "npm run build-loose -- --watch"
},
"homepage": "https://github.com/tc39/template-for-proposals#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/template-for-proposals.git"
},
"license": "MIT",
"devDependencies": {
"@tc39/ecma262-biblio": "^2.1.2775",
"ecmarkup": "^20.0.0",
"jsdom": "^25.0.1",
"parse5-html-rewriting-stream": "^7.0.0",
"tmp": "^0.2.3"
},
"engines": {
"node": ">= 12"
}
}