-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.78 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.78 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
31
32
33
34
35
36
37
38
39
{
"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-c": "ecmarkup --verbose spec.c.html --multipage c",
"build-j": "ecmarkup --verbose spec.j.html --multipage j",
"build-k": "ecmarkup --verbose spec.k.html --multipage k",
"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",
"format-c": "emu-format --write spec.c.html",
"format-j": "emu-format --write spec.j.html",
"format-k": "emu-format --write spec.k.html",
"test": "exit 0",
"watch": "npm run build-only -- --lint-spec --watch",
"watch-c": "npm run build-c -- --lint-spec --watch",
"watch-j": "npm run build-j -- --lint-spec --watch",
"watch-k": "npm run build-k -- --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.1.0",
"jsdom": "^27.0.0"
}
}