-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
{
"name": "mmm-publictransportberlin",
"version": "2.1.3",
"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": "[email protected]",
"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",
"query": "node ./convenience/query_stations.mjs bvg",
"release": "npx bumpp --no-push",
"test": "npm run lint"
},
"dependencies": {
"hafas-client": "^6.3.3",
"moment": "^2.30",
"vbb-line-colors": "^1.0.5",
"vbb-short-station-name": "^1.0.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^3.0.1",
"eslint": "^9.19.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jsonc": "^2.18.2",
"globals": "^15.14.0",
"markdownlint-cli": "^0.43.0",
"prettier": "^3.4.2",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^37.0.0",
"stylelint-prettier": "^5.0.2"
},
"engines": {
"node": ">=16"
}
}