forked from raywo/MMM-PublicTransportHafas
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 2.2 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
{
"name": "mmm-publictransporthafas",
"version": "3.0.2",
"description": "A public transport module for MagicMirror² powered by db-vendo-client and hafas-client data.",
"keywords": [
"MagicMirror",
"public transport",
"hafas",
"vendo"
],
"homepage": "https://github.com/KristjanESPERANTO/MMM-PublicTransportHafas#readme",
"bugs": {
"url": "https://github.com/KristjanESPERANTO/MMM-PublicTransportHafas/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KristjanESPERANTO/MMM-PublicTransportHafas.git"
},
"license": "MIT",
"author": "Kristjan ESPERANTO (https://github.com/KristjanESPERANTO)",
"contributors": [
"https://github.com/raywo/MMM-PublicTransportHafas/graphs/contributors",
"https://github.com/KristjanESPERANTO/MMM-PublicTransportHafas/graphs/contributors"
],
"main": "MMM-PublicTransportHafas.js",
"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",
"release": "npx bumpp --no-push",
"test": "npm run lint && npm run test:spelling",
"test:spelling": "cspell ."
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"dayjs": "^1.11.13",
"db-vendo-client": "^6.3.2",
"hafas-client": "^6.3.3"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@eslint/json": "^0.9.1",
"@eslint/markdown": "^6.2.1",
"@stylistic/eslint-plugin": "^2.13.0",
"cspell": "^8.17.2",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-package-json": "^0.19.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"markdownlint-cli": "^0.43.0",
"prettier": "^3.4.2",
"stylelint": "^16.13.2",
"stylelint-config-standard": "^37.0.0",
"stylelint-prettier": "^5.0.2"
},
"engines": {
"node": ">=16"
}
}