-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
{
"name": "mmm-publictransportberlin",
"version": "2.1.4",
"description": "Public transport module for MagicMirror² driven by BVG-Hafas data.",
"keywords": [
"MagicMirror",
"module",
"public transport",
"Berlin",
"Brandenburg"
],
"homepage": "https://github.com/deg0nz/MMM-PublicTransportBerlin",
"bugs": {
"url": "https://github.com/deg0nz/MMM-PublicTransportBerlin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/deg0nz/MMM-PublicTransportBerlin"
},
"license": "MIT",
"author": {
"name": "deg0nz",
"email": "magicmirror@kayuk.de",
"url": "https://kayuk.de"
},
"contributors": [
"https://github.com/deg0nz/MMM-PublicTransportBerlin/graphs/contributors"
],
"scripts": {
"lint": "eslint && stylelint **/*.css && markdownlint . --ignore node_modules && prettier . --check",
"lint:fix": "eslint --fix && stylelint **/*.css --fix && markdownlint . --ignore node_modules --fix && prettier . --write",
"prepare": "[ -f node_modules/.bin/husky ] && husky || echo husky is not installed.",
"query": "node ./convenience/query_stations.mjs bvg",
"test": "npm run lint && npm run test:spelling",
"test:spelling": "cspell ."
},
"dependencies": {
"hafas-client": "^6.3.4",
"moment": "^2.30",
"vbb-line-colors": "^1.0.5",
"vbb-short-station-name": "^1.0.1"
},
"lint-staged": {
"!(*.css|*.md)": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.md": [
"markdownlint --ignore node_modules --fix",
"prettier --write"
],
"*.css": [
"stylelint --fix",
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin": "^4.1.0",
"cspell": "^8.17.5",
"eslint": "^9.21.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jsonc": "^2.19.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.2",
"stylelint": "^16.15.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-prettier": "^5.0.3"
},
"engines": {
"node": ">=16"
}
}