-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "saur",
"description": "UI components for Deno's full-stack web application framework",
"version": "0.0.1",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.4",
"webpack": "^4.42.1"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parser": "babel-eslint",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"globals": {
"Deno": true,
"window": true,
"globalThis": true,
"console": true,
"TextEncoder": true,
"TextDecoder": true,
"Uint8Array": true,
"MutationObserver": true,
"Set": true,
"fetch": true
}
},
"prettier": {
"proseWrap": "always",
"trailingComma": "all"
},
"scripts": {
"lint": "eslint .",
"pretty": "prettier"
},
"files": [
"ui/*.js",
"ui.js"
]
}