forked from tc39/ecma402
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
19 lines (19 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"private": true,
"name": "ecma402",
"version": "3.0.0-draft",
"description": "ECMAScript Internationalization API Specification",
"scripts": {
"clean": "rm -rf out",
"build": "npm run clean && mkdir out && ecmarkup --verbose spec/index.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js",
"watch": "npm run clean && mkdir out && ecmarkup --watch --verbose spec/index.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js",
"update-pages": "ecmarkup spec/index.html _index.html --css _ecmarkup.css --js _ecmarkup.js --verbose && git checkout gh-pages && rm -f index.html ecmarkup.css ecmarkup.js && mv _index.html index.html && mv _ecmarkup.css ecmarkup.css && mv _ecmarkup.js ecmarkup.js && git add index.html ecmarkup.js ecmarkup.css && git commit -m \"update pages\" && git checkout master"
},
"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.0.0"
}
}