-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.05 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
{
"name": "@ukhsa-collaboration/openapi-linting-rules",
"version": "1.0.0",
"description": "UKHSA OpenAPI lint ruleset",
"main": "ukhsa.oas.rules.yml",
"type": "module",
"bin": {
"ukhsa-vacuum-lint": "./scripts/vacuum-lint.mjs"
},
"scripts": {
"build": "tsc && npm run build:functions:cjs",
"build:functions:cjs": "tsc -p tsconfig.vacuum.json && node scripts/build-vacuum-functions.mjs",
"fmt:md": "remark . --ext .md --output",
"lint:md": "remark . --ext .md --frail",
"prepare": "husky && git config commit.template .gitmessage",
"pretest": "npm run build",
"pretest:watch": "npm run build",
"start": "docker run --rm --pull=always -p \"8080:8080\" -v \"./docs:/site/docs/api-design-guidelines\" ghcr.io/ukhsa-collaboration/standards-org:latest",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ukhsa-collaboration/standards-api.git"
},
"homepage": "https://ukhsa-collaboration.github.io/standards-org/api-design-guidelines/",
"license": "MIT",
"engines": {
"npm": ">=10",
"node": ">=22.21.0 <23"
},
"keywords": [
"UKHSA",
"ruleset",
"linting"
],
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.0.2",
"@quobix/vacuum": "0.26.5",
"@swc/core": "^1.15.43",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.21",
"@types/node": "^26.1.1",
"cpx2": "^9.0.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-junit": "^17.0.0",
"js-yaml": "^5.2.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-preset-lint-consistent": "^6.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"remark-renumber-references": "^3.0.0",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"unist-util-visit": "^5.1.0"
}
}