-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.71 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.71 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
{
"name": "mmm-keybindings",
"version": "2.0.3",
"description": "Module to provide keyboard or Bluetooth Remote Control key bindings to control various aspects of the MagicMirror² through socket notifications.",
"keywords": [
"MagicMirror",
"Fire Stick",
"remote control",
"Keyboard"
],
"homepage": "https://github.com/shbatm/MMM-KeyBindings#readme",
"bugs": {
"url": "https://github.com/shbatm/MMM-KeyBindings/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shbatm/MMM-KeyBindings.git"
},
"license": "MIT",
"author": "shbatm",
"main": "MMM-KeyBindings.js",
"type": "commonjs",
"scripts": {
"demo": "cd ../../ && MM_CONFIG_FILE=modules/MMM-KeyBindings/demo.config.js node --run start:dev",
"lint": "eslint && prettier . --check",
"lint:fix": "eslint --fix && prettier . --write",
"prepare": "simple-git-hooks || true",
"release": "commit-and-tag-version --config ./changelog.config.js",
"test": "node --run lint && node --run test:spelling && node --run test:unit",
"test:spelling": "cspell .",
"test:unit": "node --test tests/unit/**/*.test.js"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"commit-and-tag-version": "^12.7.1",
"cspell": "^10.0.0",
"eslint": "^10.3.0",
"eslint-plugin-import-x": "^4.16.2",
"globals": "^17.6.0",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"simple-git-hooks": "^2.13.1"
}
}