-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.43 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 4.43 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
{
"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": "ntl --size 50",
"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",
"leaveMenu": "echo 'Leaving menu...'"
},
"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": "^17.0.5",
"normalize-package-data": "^8.0.0",
"npm-check-updates": "^19.6.6",
"npm-deprecated-check": "^1.8.0",
"ntl": "^5.1.0",
"sanitize-html": "^2.17.2",
"sharp": "^0.34.5"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^15.3.3",
"@eslint/css": "^1.0.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.5.0",
"cspell": "^9.7.0",
"eslint": "^10.1.0",
"eslint-plugin-depend": "^1.5.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-package-json": "^0.91.0",
"globals": "^17.4.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"ntl": {
"descriptions": {
"all": "Run the canonical full refresh pipeline (`full-refresh-parallel`) on all modules. Requires a lot of time and storage space!",
"collectMetadata": "Run only the collect-metadata stage from the canonical full refresh pipeline.",
"pipeline:benchmark": "Summarize recent persisted run durations for the canonical pipeline.",
"pipeline:dashboard": "Render a compact performance and reliability dashboard for the canonical pipeline.",
"pipeline:progress": "Summarize run outcomes and stage reliability trend for the canonical pipeline.",
"lint": "Check this repository for linter and formatting problems.",
"lint:fix": "Fix automatically fixable linter or formatting problems of this repository.",
"prepare": "simple-git-hooks",
"leaveMenu": "Leave this menu."
}
}
}