-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.47 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 4.47 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "magicmirror-3rd-party-modules",
"version": "0.1.0",
"description": "This project provides an overview of all MagicMirror² modules and puts the modules through a few tests.",
"keywords": [
"MagicMirror²",
"Modules"
],
"homepage": "https://github.com/MagicMirrorOrg/MagicMirror-3rd-Party-Modules#readme",
"bugs": {
"url": "https://github.com/MagicMirrorOrg/MagicMirror-3rd-Party-Modules/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MagicMirrorOrg/MagicMirror-3rd-Party-Modules.git"
},
"license": "MIT",
"author": {
"name": "Kristjan ESPERANTO",
"url": "https://github.com/KristjanESPERANTO"
},
"engines": {
"node": ">=22.6.0"
},
"type": "module",
"exports": {
".": "./scripts/collect-metadata/index.js"
},
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node scripts/menu.ts",
"all": "node scripts/orchestrator/index.ts run full-refresh-parallel",
"clone:all-modules": "rm -rf modules modules_temp && mkdir -p modules modules_temp && node scripts/parallel-processing.ts --no-cache",
"collectMetadata": "node scripts/orchestrator/index.ts run full-refresh-parallel --only=collect-metadata",
"pipeline": "node scripts/orchestrator/index.ts",
"pipeline:benchmark": "node scripts/orchestrator/index.ts benchmark --pipeline=full-refresh-parallel --limit=20",
"pipeline:dashboard": "node scripts/orchestrator/index.ts dashboard --pipeline=full-refresh-parallel --limit=20",
"pipeline:progress": "node scripts/orchestrator/index.ts progress --pipeline=full-refresh-parallel --limit=20",
"fixtures": "node scripts/fixtures.ts",
"release:validate": "node scripts/validate_release_artifacts.ts",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier . --write",
"postinstall": "node scripts/copy-client-dependencies.js",
"prepare": "simple-git-hooks",
"test": "node scripts/fixtures.ts validate && concurrently --group --kill-others-on-fail -n lint,golden,unit,types,spelling \"node --run lint\" \"node scripts/fixtures.ts golden-check\" \"node --run test:unit\" \"node --run test:types\" \"node --run test:spelling\"",
"test:unit": "node --test scripts/**/__tests__/**/*.test.js",
"test:spelling": "cspell .",
"test:types": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged && node --run test:spelling"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"commander": "^15.0.0",
"dompurify": "^3.4.14",
"marked": "^18.0.11",
"normalize-package-data": "^9.0.0",
"npm-check-updates": "^23.1.0",
"npm-deprecated-check": "^2.1.1",
"sanitize-html": "^2.17.7",
"sharp": "^0.35.4"
},
"devDependencies": {
"@eslint/css": "^2.0.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.1.0",
"@eslint/markdown": "^8.0.3",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^26.4.1",
"@types/normalize-package-data": "^2.4.4",
"concurrently": "^10.0.5",
"cspell": "^10.2.0",
"eslint": "^10.9.1",
"eslint-plugin-depend": "^1.5.0",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-package-json": "^1.8.0",
"globals": "^17.12.0",
"happy-dom": "^20.13.2",
"lint-staged": "^17.4.1",
"prettier": "^3.9.6",
"simple-git-hooks": "^2.14.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0"
},
"menu": {
"descriptions": {
"all": "Run the full-refresh pipeline on all modules.",
"collectMetadata": "Run only the collect-metadata stage.",
"fixtures": "Manage fixture and golden artifacts.",
"lint": "Check linting and formatting.",
"lint:fix": "Auto-fix linting and formatting issues.",
"pipeline": "Open the pipeline CLI.",
"pipeline:benchmark": "Summarize recent pipeline run durations.",
"pipeline:dashboard": "Show a compact pipeline dashboard.",
"pipeline:progress": "Summarize run outcomes and stage reliability.",
"prepare": "Install simple-git-hooks.",
"release:validate": "Validate release artifacts.",
"test": "Run the full test suite.",
"test:spelling": "Run cspell across the repository.",
"test:types": "Run TypeScript type checks.",
"test:unit": "Run unit tests for scripts and helpers."
}
},
"allowScripts": {
"simple-git-hooks@2.14.0": true,
"unrs-resolver": false
}
}