-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.28 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.28 KB
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
{
"private": true,
"name": "ecma262",
"version": "1.0.0",
"description": "The ECMAScript specification",
"scripts": {
"ipr-check": "node scripts/check-form tc39/ecma262",
"build-head": "npm run build-only -- --lint-spec --strict",
"prebuild-only": "npm run clean && mkdir out && cp -R img out",
"build-only": "ecmarkup --verbose spec.html --multipage out",
"build": "npm run build-head",
"build-for-pdf": "npm run prebuild-only && ecmarkup --verbose spec.html out/index.html --assets external --assets-dir out --printable --lint-spec --strict",
"pdf": "npm run build-for-pdf && prince-books --script ./node_modules/ecmarkup/js/print.js out/index.html -o out/ECMA-262.pdf",
"prebuild-snapshot": "npm run clean",
"build-snapshot": "npm run build-head && node scripts/insert-snapshot-warning.js",
"clean": "rm -rf out",
"format": "emu-format --write spec.html",
"test": "exit 0",
"watch": "npm run build-only -- --lint-spec --watch",
"check-commit": "node scripts/check-commit"
},
"repository": "tc39/ecma262",
"author": "ECMA TC39",
"license": "SEE LICENSE IN https://tc39.es/ecma262/#sec-copyright-and-software-license",
"homepage": "https://tc39.es/ecma262/",
"devDependencies": {
"ecmarkup": "^24.0.0",
"jsdom": "^27.0.0"
}
}