forked from tc39/ecma402
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 963 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
{
"private": true,
"name": "ecma402",
"version": "9.0.0",
"description": "ECMAScript Internationalization API Specification",
"scripts": {
"clean": "rm -rf out",
"build-to": "ecmarkup --verbose --load-biblio @tc39/ecma262-biblio spec/index.html",
"prebuild-only": "npm run clean && mkdir out && cp -R img out",
"build-only": "npm run build-to -- out/index.html --css-out out/ecmarkup.css --js-out out/ecmarkup.js",
"build": "npm run build-only -- --lint-spec --strict",
"build-for-pdf": "npm run build -- --old-toc",
"test": "npm run build-to -- --lint-spec /dev/null",
"watch": "npm run build -- --watch"
},
"repository": "tc39/ecma402",
"author": "ECMA TC39",
"license": "SEE LICENSE IN https://tc39.es/ecma402/#sec-copyright-and-software-license",
"homepage": "https://tc39.es/ecma402/",
"dependencies": {
"ecmarkup": "^16.0.0",
"@tc39/ecma262-biblio": "2.1.2458"
},
"devDependencies": {
}
}