forked from tc39/ecma402
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.33 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
{
"private": true,
"name": "ecma402",
"version": "6.0.0",
"description": "ECMAScript Internationalization API Specification",
"scripts": {
"build-es2019": "git remote remove origin && git remote add origin \"[email protected]:$TRAVIS_REPO_SLUG.git\" && git fetch --quiet origin && git checkout --quiet es2019 && mkdir \"out/2019\" && cp -R img \"out/2019\" && ecmarkup --verbose spec/index.html out/2019/index.html --css out/2019/ecmarkup.css --js out/2019/ecmarkup.js",
"build-master": "mkdir out && cp -R img out && ecmarkup --verbose spec/index.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js",
"prebuild": "npm run clean",
"build": "npm run build-master",
"prebuild-for-pdf": "npm run clean",
"build-for-pdf": "npm run build-master -- --old-toc",
"prebuild-travis": "npm run clean",
"build-travis": "npm run build-master && npm run build-es2019",
"clean": "rm -rf out",
"test": "exit 0",
"prewatch": "npm run clean",
"watch": "npm run build-master -- --watch"
},
"repository": "tc39/ecma402",
"author": "ECMA TC39",
"license": "SEE LICENSE IN https://tc39.github.io/ecma402/#sec-copyright-and-software-license",
"homepage": "https://tc39.github.io/ecma402/",
"dependencies": {
"ecmarkup": "^3.13.0"
},
"devDependencies": {
"@alrra/travis-scripts": "^2.0.0"
}
}