-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.17 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
{
"name": "mmm-nina",
"version": "2.0.4",
"type": "commonjs",
"description": "Simple Client Implementierung für die NINA Warn App für die MagicMirror² Plattform.",
"main": "MMM-NINA.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jalibu/MMM-NINA.git"
},
"keywords": [
"MagicMirror",
"NINA",
"warning",
"notification",
"crisis"
],
"author": "Jan.Litzenburger@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jalibu/MMM-NINA/issues"
},
"homepage": "https://github.com/jalibu/MMM-NINA#readme",
"scripts": {
"build": "rollup -c",
"demo": "cd ../../ && MM_CONFIG_FILE=modules/MMM-NINA/config.demo.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 || true",
"release": "commit-and-tag-version --commit-all --config ./changelog.config.cjs",
"test": "node --run type-check && node --run lint && node --run test:unit",
"test:unit": "node --run test:unit:build && node --test tests/unit/**/*.test.mjs",
"test:unit:build": "node -e \"require('node:fs').rmSync('.test-dist', { recursive: true, force: true })\" && tsc -p tsconfig.unit-tests.json",
"type-check": "tsc --noEmit"
},
"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-NINA.js node_helper.js"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/magicmirror-module": "^2.16.6",
"commit-and-tag-version": "^12.7.3",
"eslint": "^10.6.0",
"eslint-plugin-jsdoc": "^63.0.11",
"prettier": "^3.9.4",
"rollup": "^4.62.2",
"simple-git-hooks": "^2.13.1",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
}
}