-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.85 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
{
"name": "umboni-weather-platform-repository-tooling",
"version": "0.1.0",
"private": true,
"description": "Repository-level tooling for the Umboni New England Weather Intelligence Platform.",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"doctor": "python scripts/umboni.py doctor",
"bootstrap": "python scripts/umboni.py bootstrap",
"build:fortran": "python scripts/umboni.py build-fortran",
"build:docs": "python scripts/umboni.py build-docs",
"serve:docs": "python scripts/umboni.py serve-docs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#frontend/node_modules\" \"#site\"",
"lint:yaml": "prettier --check \"**/*.{yml,yaml}\"",
"lint:repository": "npm run lint:markdown",
"prepare": "husky",
"run:fetch": "python scripts/umboni.py fetch",
"run:simulate": "python scripts/umboni.py simulate",
"run:pipeline": "python scripts/umboni.py pipeline",
"run:frontend": "python scripts/umboni.py run-frontend",
"security:audit": "npm audit --audit-level=high",
"test:python": "python scripts/umboni.py test python",
"test:fortran": "python scripts/umboni.py test fortran",
"test:frontend": "python scripts/umboni.py test frontend",
"test:all": "python scripts/umboni.py test all",
"validate:repository": "npm run lint:repository && npm run security:audit",
"validate:frontend": "npm --prefix frontend run validate"
},
"lint-staged": {
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.md": [
"markdownlint-cli2 --fix"
]
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"markdownlint-cli2": "0.21.0",
"prettier": "3.8.1"
}
}