-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
35 lines (35 loc) · 902 Bytes
/
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
33
34
35
{
"name": "ecma-proposal-shadowrealm",
"version": "1.0.0",
"description": "ECMAScript spec proposal for ShadowRealm API",
"license": "Apache-2.0",
"author": {
"name": "TC39 Open Source Contributors"
},
"keywords": [
"realms",
"ES8",
"ES2017",
"ECMAScript",
"ESNext",
"spec",
"proposal"
],
"homepage": "https://github.com/tc39/proposal-shadowrealm#readme",
"bugs": {
"url": "https://github.com/tc39/proposal-shadowrealm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-shadowrealm.git"
},
"scripts": {
"prebuild": "mkdir -p dist",
"build": "ecmarkup --lint-spec --strict --verbose --load-biblio @tc39/ecma262-biblio spec.html dist/index.html",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@tc39/ecma262-biblio": "=2.1.2778",
"ecmarkup": "^19.1.0"
}
}