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