-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.21 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
{
"name": "@diggsweden/rest-api-profil-lint-processor",
"version": "1.1.1",
"main": "./dist/app.js",
"bin": {
"raplp": "dist/cli.js"
},
"type": "module",
"engines": {
"node": "<=24.12.0"
},
"files": [
"dist",
"README.md",
"GUIDELINES.md",
"document/**"
],
"repository": {
"type": "git",
"url": "git@github.com:diggsweden/rest-api-profil-lint-processor"
},
"description": "A command-line tool to lint OpenAPI v3 definitions using Spectral",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"test:integration": "node --experimental-vm-modules ./node_modules/.bin/jest --config jest.integration.config.cjs ",
"prepare": "npm run build",
"prepack": "npm run build",
"start": "node dist/app.js"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@stoplight/spectral-formats": "1.8.2",
"@types/adm-zip": "0.5.7",
"@types/express": "5.0.6",
"@types/jest": "30.0.0",
"@types/node": "24.10.1",
"jest": "30.2.0",
"standard-version": "9.5.0",
"ts-jest": "29.4.5",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@stoplight/spectral-core": "^1.20.0",
"@stoplight/spectral-functions": "^1.7.2",
"@stoplight/spectral-parsers": "^1.0.5",
"@stoplight/spectral-ruleset-bundler": "^1.6.3",
"@stoplight/spectral-rulesets": "^1.22.0",
"@types/express": "^5.0.0",
"adm-zip": "^0.5.16",
"body-parser": "^2.0.0",
"chalk": "^5.3.0",
"express": "^5.0.0",
"express-openapi-validator": "^5.3.7",
"fast-xml-parser": "^5.0.0",
"js-yaml": "^4.1.0",
"path": "^0.12.7",
"yargs": "^18.0.0"
},
"//": [
"Override transitive dependency due to vulnerability",
"[GHSA-pppg-cpfq-h7wr] JSONPath Plus Remote Code Execution (RCE) Vulnerability - https://github.com/advisories/GHSA-pppg-cpfq-h7wr",
"[GHSA-hw8r-x6gr-5gjp] JSONPath Plus allows Remote Code Execution - https://github.com/advisories/GHSA-hw8r-x6gr-5gjp"
],
"overrides": {
"@stoplight/spectral-core": {
"jsonpath-plus": "10.3.0"
}
},
"author": "Digg - Agency for Digital Government",
"license": "EUPL",
"keywords": []
}