-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 KB
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": "web-component-best-practices",
"version": "1.0.1",
"description": "Best practices for architecting, developing, building, and publishing HTML custom elements with minimal dependencies and a quality developer experience.",
"type": "module",
"exports": {
".": "./example/src/element.js",
"./defined.js": "./example/src/defined.js"
},
"scripts": {
"prettier": "prettier . -w",
"example": "http-server ./example",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/morganney/web-component-best-practices.git"
},
"keywords": [
"html",
"custom element",
"cdn",
"best practices",
"developer experience"
],
"author": "Morgan Ney <morganney@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/morganney/web-component-best-practices/issues"
},
"homepage": "https://github.com/morganney/web-component-best-practices#readme",
"files": [
"example/**"
],
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^10.0.1",
"@html-eslint/eslint-plugin": "^0.56.0",
"eslint": "^10.0.1",
"eslint-plugin-wc": "^3.1.0",
"globals": "^17.3.0",
"http-server": "^14.1.1",
"prettier": "^3.8.1"
},
"overrides": {
"minimatch": "^10.2.2"
},
"prettier": {
"arrowParens": "avoid",
"bracketSameLine": true,
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}