-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.88 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.88 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
119
120
121
122
{
"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",
"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",
"golden:check": "node scripts/golden-artifacts/index.ts check",
"golden:update": "node scripts/golden-artifacts/index.ts update",
"fixtures:generate": "node scripts/fixtures/generateFixturePipeline.ts",
"fixtures:update-baseline-shas": "node scripts/fixtures/updateBaselineShas.ts",
"test:fixtures": "node scripts/fixtures/validateFixtures.ts",
"release:validate": "node scripts/validate_release_artifacts.ts",
"schemas:build": "node pipeline/schemas/build.ts",
"schemas:check": "node pipeline/schemas/build.ts --check",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier . --write",
"prepare": "simple-git-hooks",
"test": "node --run test:fixtures && node --run lint && node --run golden:check && node --run schemas: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"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"commander": "^14.0.3",
"marked": "^18.0.0",
"normalize-package-data": "^8.0.0",
"npm-check-updates": "^21.0.1",
"npm-deprecated-check": "^1.8.0",
"sanitize-html": "^2.17.3",
"sharp": "^0.34.5"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^15.3.5",
"@eslint/css": "^1.1.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.6.0",
"@types/normalize-package-data": "^2.4.4",
"cspell": "^10.0.0",
"eslint": "^10.2.0",
"eslint-plugin-depend": "^1.5.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-package-json": "^0.91.1",
"globals": "^17.5.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2"
},
"menu": {
"descriptions": {
"all": "Run the full-refresh pipeline on all modules.",
"collectMetadata": "Run only the collect-metadata stage.",
"fixtures:generate": "Generate synthetic fixture artifacts.",
"fixtures:update-baseline-shas": "Refresh baseline fixture commit SHAs.",
"golden:check": "Validate outputs against the golden baseline.",
"golden:update": "Update golden artifacts from current outputs.",
"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.",
"schemas:build": "Build JSON schemas.",
"schemas:check": "Check that committed schemas are up to date.",
"test": "Run the full test suite.",
"test:fixtures": "Validate fixture consistency and schemas.",
"test:spelling": "Run cspell across the repository.",
"test:types": "Run TypeScript type checks.",
"test:unit": "Run unit tests for scripts and helpers."
}
}
}