forked from OpenEnergyTools/scl-communication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.24 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.24 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
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
{
"name": "@omicronenergy/oscd-editor-communication",
"version": "0.0.0",
"description": "OpenSCD Menu Plugin for loading IEC 61850 SCL files into OpenSCD.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/OMICRONEnergyOSS/oscd-editor-communication.git"
},
"bugs": {
"url": "https://github.com/OMICRONEnergyOSS/oscd-editor-communication/issues"
},
"homepage": "https://openscd.org",
"keywords": [
"OpenSCD",
"iec81650"
],
"contributors": [
"Jakob Vogelsang",
"OMICRON Electronics GmbH"
],
"license": "Apache-2.0",
"exports": {
".": "./dist/foundation.js",
"./oscd-editor-communication.js": "./dist/oscd-editor-communication.js"
},
"files": [
"/dist/",
"!/dist/*.spec.*",
"!/dist/*.test.*"
],
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"analyze": "cem analyze --litelement --exclude demo/* --exclude dist/* --exclude *.spec.ts --exclude *.test.ts --exclude coverage/*",
"copy-demo": "cp -r ./demo ./dist/",
"start": "npm run build && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"chokidar './demo/**/*' -c 'npm run copy-demo'\" \"wds --node-resolve --hmr \"",
"start:bundle": "npm run bundle && concurrently -k -r \"rollup -c rollup.config.js --watch\" \"wds --watch \"",
"build": "rimraf dist && mkdir dist && npm run copy-demo && npm run analyze -- --exclude dist && tsc ",
"bundle": "rimraf dist && rollup -c rollup.config.js",
"test": "npm run build && wtr --coverage --group unit",
"test:watch": "npm run build && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch --group unit\"",
"test:visual": "npm run build && playwright install && wtr --group visual",
"test:update": "npm run build && wtr --group visual --update-visual-baseline",
"deploy": "npm run bundle && gh-pages --dist 'dist'",
"prepare": "husky"
},
"dependencies": {
"@omicronenergy/oscd-api": "^0.1.3",
"@omicronenergy/oscd-background-editv1": "^0.0.6",
"@omicronenergy/oscd-edit-dialog": "^0.0.5",
"@omicronenergy/oscd-menu-open": "^0.0.6",
"@omicronenergy/oscd-menu-save": "^0.0.2",
"@omicronenergy/oscd-shell": "^0.0.8",
"@open-wc/scoped-elements": "^3.0.6",
"@openenergytools/oscd-action-icon": "^1.0.1",
"@openenergytools/oscd-action-pane": "^1.0.1",
"@openenergytools/scl-lib": "^1.7.0",
"@scopedelement/material-web": "^3.12.0",
"lit": "^3.3.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@custom-elements-manifest/analyzer": "^0.10.5",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@open-wc/dev-server-hmr": "^0.2.0",
"@open-wc/eslint-config": "^13.0.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@web/dev-server": "^0.4.6",
"@web/dev-server-polyfill": "^1.0.6",
"@web/rollup-plugin-html": "^2.3.0",
"@web/rollup-plugin-import-meta-assets": "^2.3.0",
"@web/test-runner": "0.20.2",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "0.11.1",
"@web/test-runner-visual-regression": "0.9.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-html": "^8.1.3",
"eslint-plugin-lit": "^2.1.1",
"eslint-plugin-lit-a11y": "^5.1.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-wc": "^3.0.1",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.48.1",
"rollup-plugin-copy": "^3.5.0",
"sinon": "^21.0.0",
"typedoc": "^0.28.11",
"typescript": "^5.9.2"
},
"customElements": "custom-elements.json",
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"eslint"
]
}
}