-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "mmm-commandtonotification",
"version": "0.0.9",
"description": "A MagicMirror² module which calls system-commands or scripts periodically and sends the output as notifications.",
"main": "MMM-CommandToNotification.js",
"repository": {
"type": "git",
"url": "git@github.com:Tom-Hirschberger/MMM-CommandToNotification.git"
},
"keywords": [
"MagicMirror",
"scripts",
"commands",
"notifications",
"conditional",
"temperature",
"humidity",
"environment",
"sensors"
],
"author": "Thomas Hirschberger",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tom-Hirschberger/MMM-CommandToNotification/issues"
},
"homepage": "https://github.com/Tom-Hirschberger/MMM-CommandToNotification/#readme",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"prettier": "^3.3.3"
},
"scripts": {
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint . --fix && prettier . --write",
"test": "npm run lint"
}
}