-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
50
51
52
53
54
55
56
{
"name": "MMM-MealieMenu",
"version": "1.7.0",
"description": "A MagicMirror² module that displays your Mealie meal plan for the week.",
"repository": "zanix/MMM-MealieMenu",
"keywords": [
"MagicMirror",
"mealie",
"recipie"
],
"author": {
"name": "Joshua Clark",
"url": "https://github.com/zanix"
},
"contributors": [
"https://github.com/zanix/MMM-MealieMenu/graphs/contributors"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zanix/MMM-MealieMenu/issues"
},
"homepage": "https://github.com/zanix/MMM-MealieMenu#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^8.57.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^2.7.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.41.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.2"
},
"scripts": {
"lint": "eslint . && stylelint **/*.css && markdownlint . --ignore node_modules && prettier . --check",
"lint:fix": "eslint . --fix && stylelint **/*.css --fix && markdownlint . --ignore node_modules --fix && prettier . --write",
"test": "npm run lint",
"prepare": "husky || true"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*": "prettier --ignore-unknown --write"
}
}