forked from tc39/proposal-shadowrealm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "ecma-proposal-realms",
"private": true,
"version": "0.0.0",
"description": "ECMAScript spec proposal for Realms API",
"scripts": {
"build": "ecmarkup spec/index.emu index.html",
"watch": "ecmarkup --watch spec/index.emu index.html",
"build-shim-dev": "node shim/rollup.config.js",
"build-shim-prod": "node shim/rollup.config.js --production",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caridy/proposal-realms.git"
},
"keywords": [
"realms",
"ES8",
"ES2017",
"ECMAScript",
"ESNext",
"spec",
"proposal"
],
"author": {
"name": "Dave Herman"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/caridy/proposal-realms/issues"
},
"homepage": "https://github.com/caridy/proposal-realms#readme",
"dependencies": {},
"devDependencies": {
"ecmarkup": "latest",
"babel-eslint": "^6.1.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-rollup": "^1.1.1",
"eslint": "^3.0.1",
"forever": "^0.15.2",
"rollup": "^0.34.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^3.3.1",
"rollup-plugin-inject": "^1.4.1",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-strip": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"serve-static": "^1.11.1",
"watch": "1.0.0",
"yargs": "^6.0.0"
}
}