-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
171 lines (171 loc) · 4.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "@openscd/open-scd-core",
"version": "1.0.1",
"description": "The core editor component of open-scd, without any extensions pre-installed.",
"author": "Open-SCD",
"license": "Apache-2.0",
"packageManager": "npm@8.12.2",
"type": "module",
"browser": "./dist/foundation.js",
"main": "./dist/foundation.js",
"files": [
"./dist/**"
],
"exports": {
".": "./dist/foundation.js",
"./open-scd.js": "./dist/open-scd.js"
},
"scripts": {
"start": "npm run build && concurrently -k -r \"tsc -b --watch --preserveWatchOutput\" \"wds\"",
"start:build": "npm run build && es-dev-server --root-dir dist --app-index index.html --compatibility none --open",
"start:bundle": "npm run bundle && es-dev-server --root-dir dist --app-index index.html --compatibility none --open",
"test": "playwright install && wtr --coverage",
"test:watch": "npm run build && concurrently -k -r \"tsc -b --watch --preserveWatchOutput\" \"wtr --watch --coverage\"",
"test:update": "npm run build && wtr --update-visual-baseline",
"analyze": "cem analyze --litelement",
"deploy": "npm run bundle && gh-pages --dist 'dist'",
"build": "npm run extract && npm run localize && npm run compile",
"compile": "tsc -b",
"bundle": "rimraf dist && rollup -c rollup.config.js",
"doc": "npm run analyze -- --exclude dist && typedoc --out doc foundation.ts",
"prepublish": "npm run lint && npm run build && npm run doc",
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"extract": "lit-localize extract",
"localize": "lit-localize build"
},
"dependencies": {
"@lit/localize": "^0.11.4",
"@material/mwc-button": "^0.27.0",
"@material/mwc-dialog": "^0.27.0",
"@material/mwc-drawer": "^0.27.0",
"@material/mwc-icon": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@material/mwc-tab-bar": "^0.27.0",
"@material/mwc-top-app-bar-fixed": "^0.27.0",
"@open-wc/lit-helpers": "^0.5.1",
"lit": "^2.2.7"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.3",
"@lit/localize-tools": "^0.6.5",
"@open-wc/building-rollup": "^2.2.1",
"@open-wc/eslint-config": "^7.0.0",
"@open-wc/testing": "next",
"@rollup/plugin-typescript": "^9.0.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@web/dev-server": "^0.1.32",
"@web/test-runner": "next",
"@web/test-runner-playwright": "^0.8.10",
"@web/test-runner-visual-regression": "^0.6.6",
"concurrently": "^7.3.0",
"es-dev-server": "^2.1.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tsdoc": "^0.2.16",
"fast-check": "^3.1.1",
"gh-pages": "^4.0.0",
"husky": "^4.3.8",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsdoc": "^0.0.4",
"tslib": "^2.4.0",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
},
"customElements": "custom-elements.json",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"lib": [
"es2018",
"dom"
]
},
"extends": [
"@open-wc",
"prettier"
],
"plugins": [
"@typescript-eslint",
"eslint-plugin-tsdoc"
],
"rules": {
"no-unused-vars": "off",
"sort-imports": [
"error",
{
"ignoreCase": true,
"allowSeparatedGroups": true
}
],
"class-methods-use-this": [
"error",
{
"exceptMethods": [
"locale"
]
}
],
"@typescript-eslint/no-explicit-any": [
"error",
{
"ignoreRestArgs": true
}
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.ts",
"**/*.spec.ts"
]
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_"
}
],
"import/no-unresolved": "off",
"import/extensions": [
"error",
"always",
{
"ignorePackages": true
}
]
},
"overrides": [
{
"files": [
"**/*.spec.ts"
],
"rules": {
"no-unused-expressions": "off"
}
}
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}