-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "MMM-ModuleToggleButton",
"version": "1.0.1",
"description": "MagicMirror module that allows displaying and hiding modules when a hardware button is pushed",
"main": "MMM-ModuleToggleButton.js",
"author": "György Balássy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/balassy/MMM-ModuleToggleButton"
},
"keywords": [
"MagicMirror",
"module",
"button",
"raspberry"
],
"scripts": {
"lint": "npm run jsonlint & npm run eslint & npm run markdownlint",
"eslint": "eslint *.js",
"jsonlint": "jsonlint --quiet --comments **/*.json !**/node_modules",
"markdownlint": "markdownlint *.md",
"postinstall": "node_modules/.bin/electron-rebuild -e ../../node_modules/electron"
},
"dependencies": {
"onoff": "latest"
},
"devDependencies": {
"@prantlf/jsonlint": "^14.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"markdownlint-cli": "^0.39.0"
}
}