forked from tc39/proposal-shadowrealm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 850 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
{
"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 --verbose spec.html dist/index.html --css dist/ecmarkup.css --js dist/ecmarkup.js",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"ecmarkup": "^9.7.1"
}
}