-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.04 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.04 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
{
"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.11.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.5.0",
"@types/adm-zip": "^0.5.6",
"@types/express": "^5.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"jest": "^30.0.4",
"standard-version": "^9.5.0",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"ts-node": "^10.9.2"
},
"dependencies": {
"@stoplight/spectral-core": "^1.19.5",
"@stoplight/spectral-functions": "^1.7.2",
"@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.1",
"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": []
}