generated from tc39/template-for-proposals
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 822 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"private": true,
"name": "template-for-proposals",
"description": "A repository template for ECMAScript proposals.",
"scripts": {
"start": "npm run build-loose -- --watch",
"build": "npm run build-loose -- --strict",
"build-loose": "ecmarkup --load-biblio @tc39/ecma262-biblio --load-biblio @tc39/ecma402-biblio --load-biblio ./proposal-intl-keep-trailing-zeros-biblio.json --verbose --lint-spec spec.emu index.html"
},
"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.2895",
"@tc39/ecma402-biblio": "^2.1.1185",
"ecmarkup": "^21.3.1"
},
"engines": {
"node": ">= 12"
}
}