-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.89 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.89 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
{
"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/create_module_list.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "ntl --autocomplete --size 50 --exclude start lint* prepare test automated",
"all": "node scripts/orchestrator/index.js run full-refresh",
"createModuleList": "node scripts/orchestrator/index.js run --only=create-module-list",
"updateRepositoryData": "node scripts/orchestrator/index.js run --only=update-repository-data",
"getModules": "node scripts/orchestrator/index.js run --only=get-modules",
"expandModuleList": "node scripts/orchestrator/index.js run --only=expand-module-list",
"checkModulesJs": "node scripts/orchestrator/index.js run --only=check-modules-js",
"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 updateRepositoryData && node --run getModules && node --run expandModuleList && node --run checkModulesJs && 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.1",
"marked": "^16.4.1",
"normalize-package-data": "^8.0.0",
"npm-check-updates": "^19.1.1",
"npm-deprecated-check": "^1.7.0",
"ntl": "^5.1.0",
"sanitize-html": "^2.17.0",
"sharp": "^0.34.4"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^14.2.1",
"@eslint/css": "^0.13.0",
"@eslint/js": "^9.38.0",
"@eslint/json": "^0.13.2",
"@eslint/markdown": "^7.4.1",
"@stylistic/eslint-plugin": "^5.5.0",
"cspell": "^9.2.1",
"eslint": "^9.38.0",
"eslint-plugin-depend": "^1.3.1",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-package-json": "^0.57.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"typescript-eslint": "^8.46.2"
},
"ntl": {
"descriptions": {
"all": "Run all scripts (1 till 6) on all modules. Requires a lot of time and storage space!",
"createModuleList": "Script 1: Convert the official module list from the wiki into a json file.",
"updateRepositoryData": "Script 2: 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.",
"checkModulesJs": "Script 5: Perform some checks with a js script.",
"checkModules": "Script 6: 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."
}
}
}