-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
46
47
48
49
{
"name": "mmm-pihole-stats",
"version": "1.0.0",
"description": "Pi-hole stats module for MagicMirror².",
"main": "MMM-pihole-stats.js",
"scripts": {
"install-hooks": "npm install --ony=dev && npx husky install && npx husky add .husky/pre-commit \"npm run precommit\"",
"prettify": "prettier --write .",
"lint": "prettier --check .",
"lint-staged": "lint-staged",
"precommit": "npm run prettify && npm run lint-staged"
},
"lint-staged": {
"**/*": [
"npm run prettify"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"tabWidth": 4,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sheyabernstein/MMM-pihole-stats.git"
},
"keywords": [
"MagicMirror",
"Module",
"Pi-Hole"
],
"author": "Sheya Bernstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/sheyabernstein/MMM-pihole-stats/issues"
},
"homepage": "https://github.com/sheyabernstein/MMM-pihole-stats#readme",
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
}
}