-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 880 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 880 Bytes
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": "ecma426",
"version": "1.0.0",
"description": "The Source Map specification",
"scripts": {
"prebuild-only": "npm run clean && mkdir out && cp -R img out",
"build-only": "npm run ecmarkup -- --verbose --load-biblio @tc39/ecma262-biblio spec.emu out/index.html",
"build-loose": "npm run build-only",
"build": "npm run build-only -- --lint-spec",
"clean": "rm -rf out",
"ecmarkup": "node ./scripts/ecmarkup.js",
"format": "emu-format --write spec.emu",
"test": "exit 0",
"watch": "npm run build-only -- --watch"
},
"repository": "tc39/ecma426",
"author": "Ecma TC39 (TG4)",
"license": "SEE LICENSE IN https://tc39.es/ecma426/#sec-copyright-and-software-license",
"homepage": "https://tc39.es/ecma426/",
"devDependencies": {
"@tc39/ecma262-biblio": "^2.1.2946",
"ecmarkup": "^23.0.2"
}
}