forked from tc39/ecma262
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.36 KB
/
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
29
30
31
32
33
34
35
36
37
{
"private": true,
"name": "ecma262",
"version": "1.0.0",
"description": "The ECMAScript specification",
"scripts": {
"ipr-check": "node scripts/check-form tc39/ecma262 HEAD --all",
"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": "ecmarkup --verbose spec.html --old-toc --assets external out/index.html",
"pdf": "npm run build-for-pdf && pagedjs-cli --page-size a4 out/index.html -o out/index.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/",
"dependencies": {
},
"devDependencies": {
"ecmarkup": "^18.3.1",
"glob": "^7.1.6",
"jsdom": "^15.0.0",
"pagedjs": "^0.4.3",
"pagedjs-cli": "^0.4.3",
"tar-stream": "^2.2.0",
"tiny-json-http": "^7.1.2"
}
}