-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.11 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.11 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "mmm-remote-control",
"version": "4.8.2",
"description": "This module for the MagicMirror² allows you to shutdown and configure your mirror through a web browser.",
"keywords": [
"magic mirror",
"smart mirror",
"module",
"remote control",
"control"
],
"homepage": "https://github.com/jopyth/MMM-Remote-Control#readme",
"bugs": {
"url": "git+https://github.com/jopyth/MMM-Remote-Control/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jopyth/MMM-Remote-Control"
},
"license": "MIT",
"author": "Joseph Bethge",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/jopyth/MMM-Remote-Control/graphs/contributors"
}
],
"type": "commonjs",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"demo": "cd ../../ && MM_CONFIG_FILE=modules/MMM-Remote-Control/demo.config.js node --run start:dev",
"download_modules": "node ./scripts/download_modules_manually.mjs",
"generate-apikey": "node -p 'require(\"uuid\").v4()'",
"lint": "eslint && prettier . --check",
"lint:fix": "eslint --fix && prettier . --write",
"prepare": "simple-git-hooks || echo 'No problem. Skipping git hooks installation.'",
"postinstall": "node scripts/postinstall.js",
"release": "commit-and-tag-version -a --config ./changelog.config.js",
"test": "node --run lint && node --run test:spelling && node --test tests/**/*.test.js",
"test:coverage": "c8 --all node --test tests/unit/**/*.test.js tests/integration/**/*.test.js",
"test:dom": "node --test tests/dom/**/*.test.js",
"test:integration": "node --test tests/integration/**/*.test.js",
"test:spelling": "cspell .",
"test:unit": "node --test tests/unit/**/*.test.js"
},
"dependencies": {
"marked": "^17.0.4",
"qrcode": "^1.5.4",
"simple-git": "^3.32.3",
"swagger-ui-dist": "^5.32.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.3",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.9.0",
"c8": "^11.0.0",
"commit-and-tag-version": "^12.6.1",
"cspell": "^9.7.0",
"eslint": "^9.39.3",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-unicorn": "^63.0.0",
"express": "^5.2.1",
"globals": "^17.4.0",
"happy-dom": "^20.8.3",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"c8": {
"reporter": [
"text-summary",
"lcov"
],
"include": [
"lib/**/*.js",
"API/**/*.js",
"node_helper.js",
"MMM-Remote-Control.js"
],
"exclude": [
"tests/**",
"translations/**",
"docs/**",
"img/**",
"remote.html",
"remote.js",
"remote.css",
"**/*.md"
],
"check-coverage": true,
"branches": 75,
"lines": 45,
"functions": 50,
"statements": 45
}
}