forked from tc39/proposal-shadowrealm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "ecma-proposal-realms",
"private": true,
"version": "1.0.0",
"description": "ECMAScript spec proposal for Realms API",
"scripts": {
"build": "ecmarkup spec/index.emu index.html --css ecmarkup.css --js ecmarkup.js",
"watch": "ecmarkup --watch spec/index.emu index.html --css ecmarkup.css --js ecmarkup.js",
"build-shim-dev": "cross-env NODE_ENV=development rollup -c shim/rollup.config.js --watch",
"build-shim-prod": "cross-env NODE_ENV=production rollup -c shim/rollup.config.js",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-realms.git"
},
"keywords": [
"realms",
"ES8",
"ES2017",
"ECMAScript",
"ESNext",
"spec",
"proposal"
],
"author": {
"name": "Dave Herman"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tc39/proposal-realms/issues"
},
"homepage": "https://github.com/tc39/proposal-realms#readme",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.22.0",
"cross-env": "^3.1.4",
"ecmarkup": "latest",
"eslint": "^3.0.1",
"forever": "^0.15.2",
"rollup": "^0.41.3",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
}
}