-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "mmm-forum",
"version": "1.0.6",
"description": "A MagicMirror² module to display information from the MagicMirror² forum.",
"keywords": [
"MagicMirror",
"forum",
"NodeBB"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KristjanESPERANTO/MMM-Forum.git"
},
"license": "ISC",
"author": "Kristjan ESPERANTO (https://github.com/KristjanESPERANTO)",
"main": "MMM-Forum.js",
"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",
"prepare": "[ -f node_modules/.bin/husky ] && husky || echo husky is not installed.",
"release": "npx commit-and-tag-version",
"test": "npm run lint && npm run test:spelling",
"test:spelling": "cspell ."
},
"lint-staged": {
"*.css": "stylelint --fix",
"*.js": "eslint --cache --fix",
"*.md": "markdownlint --ignore node_modules --fix"
},
"dependencies": {
"cheerio": "^1.0.0",
"dayjs": "^1.11.13"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@eslint/json": "^0.10.0",
"@eslint/markdown": "^6.3.0",
"@stylistic/eslint-plugin": "^4.2.0",
"cspell": "^8.17.5",
"eslint": "^9.22.0",
"eslint-plugin-import-x": "^4.6.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.3",
"stylelint": "^16.15.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-prettier": "^5.0.3"
}
}