-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "mmm-remote-control",
"version": "2.5.3",
"description": "This module for the MagicMirror² allows you to shutdown and configure your mirror through a web browser.",
"repository": {
"type": "git",
"url": "git+https://github.com/jopyth/MMM-Remote-Control"
},
"engines": {
"node": ">=18"
},
"keywords": [
"magic mirror",
"smart mirror",
"module",
"remote control",
"control"
],
"author": "Joseph Bethge",
"contributors": ["https://github.com/jopyth/MMM-Remote-Control/graphs/contributors"],
"license": "MIT",
"bugs": {
"url": "git+https://github.com/jopyth/MMM-Remote-Control/issues"
},
"homepage": "https://github.com/jopyth/MMM-Remote-Control#readme",
"dependencies": {
"body-parser": "^1.20.3",
"simple-git": "^3.27.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"cspell": "^8.17.2",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0"
},
"scripts": {
"download_modules": "node ./scripts/download_modules_manually.mjs",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "npm run lint && npm run test:spelling",
"test:spelling": "cspell ."
}
}