-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 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
{
"name": "mmm-notificationtrigger",
"version": "1.1.3",
"type": "commonjs",
"description": "A module for MagicMirror². It is a simple notification relay which can convert notifications from TRIGGER_NOTIFICATION to FIRE_NOTIFICATION.",
"main": "MMM-NotificationTrigger.js",
"scripts": {
"demo": "cd ../../ && MM_CONFIG_FILE=modules/MMM-NotificationTrigger/demo.config.js node --run start:dev",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "simple-git-hooks || echo 'No problem. Skipping git hooks installation.'",
"release": "commit-and-tag-version --config ./changelog.config.js",
"test": "node --run lint && node --run test:unit",
"test:unit": "node --test tests/unit/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MMRIZE/MMM-NotificationTrigger.git"
},
"keywords": [
"Notification",
"Trigger"
],
"author": "Seongnoh Sean Yi",
"license": "MIT",
"bugs": {
"url": "https://github.com/MMRIZE/MMM-NotificationTrigger/issues"
},
"homepage": "https://github.com/MMRIZE/MMM-NotificationTrigger#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^8.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"commit-and-tag-version": "^12.7.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"lint-staged": "^16.4.0",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix"
]
}
}