-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 4.47 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
{
"name": "oscd-tp-multicast-naming",
"description": "Webcomponent for updating multicast addressing in IEC 61850 SCL files",
"license": "Apache-2.0",
"author": "Daniel Mulholland",
"version": "0.0.0",
"main": "dist/oscd-tp-multicast-naming.js",
"module": "dist/oscd-tp-multicast-naming.js",
"exports": {
".": "./dist/oscd-tp-multicast-naming.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 dist/doc oscd-tp-multicast-naming.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-checkbox": "^0.27.0",
"@material/mwc-dialog": "^0.27.0",
"@material/mwc-formfield": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@material/mwc-menu": "^0.27.0",
"@material/mwc-snackbar": "^0.27.0",
"@openenergytools/scl-lib": "^0.2.2",
"@openenergytools/scl-text-field": "^1.0.4",
"@openscd/open-scd-core": "^0.0.2",
"@openscd/oscd-filtered-list": "^1.1.0",
"@openscd/oscd-scl": "^0.0.2",
"@vaadin/checkbox": "^24.1.5",
"@vaadin/grid": "^24.1.5",
"@vaadin/vaadin-material-styles": "^24.1.4",
"@vaadin/vaadin-themable-mixin": "^24.1.5",
"lit": "^2.4.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.6",
"@lit/localize-tools": "^0.6.8",
"@open-wc/building-rollup": "^2.0.2",
"@open-wc/eslint-config": "^8.0.2",
"@open-wc/testing": "^3.1.6",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/node": "^18.11.9",
"@types/object-inspect": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@web/dev-server": "^0.1.35",
"@web/rollup-plugin-import-meta-assets": "^2.0.0",
"@web/test-runner": "^0.15.0",
"@web/test-runner-commands": "^0.6.6",
"@web/test-runner-playwright": "^0.9.0",
"@web/test-runner-visual-regression": "^0.8.1",
"concurrently": "^7.5.0",
"es-dev-server": "^2.1.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tsdoc": "^0.2.17",
"gh-pages": "^4.0.0",
"husky": "^4.3.8",
"lint-staged": "^13.0.3",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup-plugin-copy": "^3.4.0",
"tslib": "^2.4.1",
"typedoc": "^0.23.8",
"typescript": "^4.8.4"
},
"customElements": "custom-elements.json",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"@open-wc",
"prettier"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-duplicate-imports": "off",
"@typescript-eslint/no-duplicate-imports": "error",
"no-unused-vars": "off",
"no-redeclare": "off",
"@typescript-eslint/no-unused-vars": [
"error"
],
"import/no-unresolved": "off",
"import/extensions": [
"error",
"always",
{
"ignorePackages": true
}
]
}
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}