-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "mmm-calendarext2",
"version": "2.0.0",
"description": "Alternative calendar module of MagicMirror².",
"keywords": [
"MagicMirror",
"calendar"
],
"homepage": "https://github.com/MMM-CalendarExt2/MMM-CalendarExt2#readme",
"bugs": {
"url": "https://github.com/MMM-CalendarExt2/MMM-CalendarExt2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MMM-CalendarExt2/MMM-CalendarExt2.git"
},
"license": "MIT",
"author": "eouia <eouia0819@gmail.com>",
"main": "MMM-CalendarExt2.js",
"type": "commonjs",
"scripts": {
"eslint": "eslint",
"eslint:fix": "eslint --fix",
"lint": "node --run eslint && node --run stylelint && node --run markdownlint",
"lint:fix": "node --run eslint:fix && node --run stylelint:fix && node --run markdownlint:fix",
"markdownlint": "markdownlint-cli2 **/*.md",
"markdownlint:fix": "markdownlint-cli2 **/*.md --fix",
"prepare": "[ -f node_modules/.bin/husky ] && husky || true",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"stylelint": "stylelint **/*.css",
"stylelint:fix": "stylelint **/*.css --fix",
"test": "node --run lint && node --run prettier"
},
"lint-staged": {
"!(*.css|*.md)": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"markdownlint-cli2 --fix",
"prettier --write"
]
},
"dependencies": {
"dayjs": "^1.11.19",
"ical.js": "^2.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@eslint/json": "^0.14.0",
"@stylistic/eslint-plugin": "^5.5.0",
"eslint": "^9.39.1",
"eslint-plugin-import-x": "^4.16.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"markdownlint-cli2": "^0.18.1",
"prettier": "^3.7.3",
"stylelint": "^16.25.0",
"stylelint-config-standard": "^39.0.1",
"stylelint-prettier": "^5.0.3"
},
"engines": {
"node": ">=18"
}
}