-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.51 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 4.51 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
{
"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": "https://github.com/MagicMirrorOrg/MagicMirror-3rd-Party-Modules"
},
"license": "MIT",
"author": {
"name": "Kristjan ESPERANTO",
"url": "https://github.com/KristjanESPERANTO"
},
"type": "module",
"main": "scripts/collect-metadata/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "ntl --size 50",
"all": "node scripts/orchestrator/index.js run full-refresh",
"collectMetadata": "node scripts/orchestrator/index.js run --only=collect-metadata",
"getModules": "node scripts/orchestrator/index.js run --only=get-modules",
"expandModuleList": "node scripts/orchestrator/index.js run --only=expand-module-list",
"checkModules": "node scripts/orchestrator/index.js run --only=check-modules",
"pipeline": "node scripts/orchestrator/index.js",
"golden:check": "node scripts/golden-artifacts/index.js check",
"golden:update": "node scripts/golden-artifacts/index.js update",
"fixtures:generate": "node scripts/fixtures/generateFixturePipeline.js",
"fixtures:update-baseline-shas": "node scripts/fixtures/updateBaselineShas.js",
"test:fixtures": "node scripts/fixtures/validateFixtures.js",
"checkModules:compare": "node scripts/check-modules/compare/index.js",
"release:validate": "node scripts/validate_release_artifacts.js",
"schemas:build": "node pipeline/schemas/build.js",
"schemas:check": "node pipeline/schemas/build.js --check",
"ownList": "node create_own_module_list.js && node --run collectMetadata && node --run getModules && node --run expandModuleList && node --run checkModules",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier . --write",
"prepare": "husky",
"test": "node --run test:fixtures && node --run lint && node --run golden:check && node --run schemas:check && node --run test:unit && node --run test:spelling",
"test:unit": "node --test scripts/shared/__tests__/**/*.test.js && node --test scripts/check-modules/__tests__/**/*.test.js && node --test scripts/check-modules/compare/__tests__/**/*.test.js",
"test:spelling": "cspell .",
"leaveMenu": "echo 'Leaving menu...'"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"commander": "^14.0.2",
"marked": "^17.0.1",
"normalize-package-data": "^8.0.0",
"npm-check-updates": "^19.3.2",
"npm-deprecated-check": "^1.7.0",
"ntl": "^1.3.0",
"sanitize-html": "^2.17.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^15.2.2",
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.7.1",
"cspell": "^9.6.0",
"eslint": "^9.39.2",
"eslint-plugin-depend": "^1.4.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-package-json": "^0.88.2",
"globals": "^17.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript-eslint": "^8.53.1"
},
"ntl": {
"descriptions": {
"all": "Run all scripts (1 till 6) on all modules. Requires a lot of time and storage space!",
"collectMetadata": "Script 1+2: Convert the official module list from the wiki into a json file and update the JSON file that collects the GitHub information of the modules.",
"getModules": "Script 3: Get all modules with `git clone`. Requires a lot of time and storage space!",
"expandModuleList": "Script 4: Extend the module list with information from the package.json. And get an image if one is available and the license is okay.",
"checkModules": "Script 5: Perform deep checks with the TypeScript stage.",
"ownList": "Test only defined modules. See README.",
"lint": "Check this repository for linter and formatting problems.",
"lint:fix": "Fix automatically fixable linter or formatting problems of this repository.",
"prepare": "husky",
"leaveMenu": "Leave this menu."
}
}
}