-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "ecma-proposal-frozen-realms",
"private": true,
"version": "0.0.0",
"description": "ECMAScript spec proposal for Frozen Realms",
"scripts": {
"build": "ecmarkup spec/index.emu index.html",
"watch": "ecmarkup --watch spec/index.emu index.html",
"shim:lint": "eslint ./shim/src/**/*.js ./shim/test/**/*.js",
"shim:prettier": "prettier --config ./shim/.prettierrc --write ./shim/src/**/*.js ./shim/test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/frozen-realms.git"
},
"main": "shim/src/main.js",
"keywords": [
"realms",
"frozen",
"ES8",
"ES2017",
"ECMAScript",
"ESNext",
"spec",
"proposal"
],
"author": {
"name": "Mark S. Miller"
},
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/tc39/frozen-realms/issues"
},
"homepage": "https://github.com/tc39/frozen-realms#readme",
"dependencies": {},
"devDependencies": {
"ecmarkup": "latest",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.12.1"
}
}