-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.18 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"name": "immunisation-fhir-api",
"version": "0.0.1",
"description": "OAS (Swagger v3) API Definition for Template API",
"scripts": {
"lint": "redocly lint --skip-rule=security-defined specification/immunisation-fhir-api.yaml",
"format": "prettier --write .",
"format-check": "prettier --check .",
"publish": "redocly bundle specification/immunisation-fhir-api.yaml --remove-unused-components --ext json -o build/immunisation-fhir-api.json",
"check-licenses": "node_modules/.bin/license-checker --failOn GPL --failOn LGPL",
"prepare": "husky",
"serve": "redocly preview --project-dir ./build"
},
"author": "NHS Digital",
"license": "MIT",
"homepage": "https://github.com/NHSDigital/immunisation-fhir-api",
"devDependencies": {
"@redocly/cli": "^2.24.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.py": [
"poetry -P quality_checks run ruff check --fix",
"poetry -P quality_checks run ruff format"
],
"*.{tf,tfvars}": "terraform fmt",
"immunisation-fhir-api.{yaml,json}": "redocly lint --skip-rule=security-defined"
}
}