-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.79 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
38
{
"private": true,
"name": "ecma262",
"version": "1.0.0",
"description": "The ECMAScript specification",
"scripts": {
"ipr-check": "node scripts/check-form tc39/ecma262 \"$TRAVIS_COMMIT\"",
"prebuild-spec": "git remote rm travis-origin 2>/dev/null ; git remote add travis-origin \"[email protected]:${TRAVIS_REPO_SLUG:-tc39/ecma262}.git\" && git fetch --quiet travis-origin",
"build-spec": "YEAR=2021 && git checkout --quiet \"es${YEAR}\" && mkdir -p \"out/${YEAR}\" && cp -R img \"out/${YEAR}\" && ecmarkup --verbose spec.html \"out/${YEAR}/index.html\" --css \"out/${YEAR}/ecmarkup.css\" --js \"out/${YEAR}/ecmarkup.js\" && git checkout --quiet travis-origin/test-travis",
"postbuild-spec": "git remote rm travis-origin",
"build-master": "npm run build-only -- --lint-spec --strict",
"prebuild-only": "npm run clean && mkdir out && cp -R img out",
"build-only": "ecmarkup --no-ecma-262-biblio --verbose spec.html --multipage out",
"build": "npm run build-master",
"build-for-pdf": "npm run build-master -- --old-toc",
"build-travis": "npm run build-master && npm run build-spec",
"prebuild-snapshot": "npm run clean",
"build-snapshot": "npm run build-master && node scripts/insert_snapshot_warning.js",
"clean": "rm -rf out",
"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": {
"ecmarkup": "^7.0.3"
},
"devDependencies": {
"@alrra/travis-scripts": "^2.1.0",
"glob": "^7.1.6",
"jsdom": "^15.0.0",
"tar-stream": "^2.2.0",
"tiny-json-http": "^7.1.2"
}
}