-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 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
{
"name": "mmm-rnv",
"version": "1.3.1",
"description": "This is a departure monitor for the Rhein-Neckar-Verkehr (RNV) public transport network for the MagicMirror² platform.",
"main": "MMM-RNV.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jalibu/MMM-RNV.git"
},
"scripts": {
"build": "rollup -c",
"demo": "cd ../../ && MM_CONFIG_FILE=modules/MMM-RNV/demo.config.js node --run start:dev",
"dev": "rollup -c --sourcemap=inline",
"dev:watch": "node --run dev -- --watch",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier . --write",
"prepare": "simple-git-hooks",
"release": "commit-and-tag-version --config ./changelog.config.js",
"test": "node --run type-check && node --run lint",
"type-check": "tsc --noEmit"
},
"keywords": [
"MagicMirror",
"Public Transport",
"RNV"
],
"contributors": [
"Julian Dinter",
"Jan Litzenburger"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jalibu/MMM-RNV/issues"
},
"homepage": "https://github.com/jalibu/MMM-RNV#readme",
"simple-git-hooks": {
"pre-commit": "node --run test",
"pre-push": "node --run build"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "node --run build && git add MMM-RNV.js node_helper.js"
},
"skip": {
"commit": false
},
"commitAll": true
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/magicmirror-module": "^2.16.6",
"commit-and-tag-version": "^12.6.1",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^62.5.3",
"prettier": "^3.8.1",
"rollup": "^4.57.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}