forked from tc39/ecma402
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.54 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
{
"private": true,
"name": "ecma402",
"version": "7.0.0",
"description": "ECMAScript Internationalization API Specification",
"scripts": {
"build-es2020": "git remote remove origin && git remote add origin \"[email protected]:$TRAVIS_REPO_SLUG.git\" && git fetch --quiet origin && git checkout --quiet es2020 && mkdir \"out/2020\" && cp -R img \"out/2020\" && ecmarkup --verbose spec/index.html out/2020/index.html --css out/2020/ecmarkup.css --js out/2020/ecmarkup.js",
"build-master": "mkdir out && cp -R img out && ecmarkup --lint-spec --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-ci": "npm run clean",
"build-ci": "npm run build-master && npm run build-es2020",
"prebuild-only": "npm run clean && mkdir out && cp -R img out",
"build-only": "ecmarkup --verbose spec/index.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js",
"clean": "rm -rf out",
"test": "ecmarkup --lint-spec spec/index.html /dev/null",
"prewatch": "npm run clean",
"watch": "npm run build-master -- --watch"
},
"repository": "tc39/ecma402",
"author": "ECMA TC39",
"license": "SEE LICENSE IN https://tc39.es/ecma402/#sec-copyright-and-software-license",
"homepage": "https://tc39.es/ecma402/",
"dependencies": {
"ecmarkup": "^4.2.3"
},
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1"
}
}