-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@apidevtools/swagger-parser",
"version": "11.0.0",
"description": "Swagger 2.0 and OpenAPI 3.0 parser and validator for Node and browsers",
"keywords": [
"swagger",
"openapi",
"open-api",
"json",
"yaml",
"parse",
"parser",
"validate",
"validator",
"validation",
"spec",
"specification",
"schema",
"reference",
"dereference"
],
"contributors": [
{
"name": "James Messinger"
},
{
"name": "JonLuca DeCaro",
"email": "apis@jonlu.ca"
}
],
"homepage": "https://apidevtools.com/swagger-parser/",
"repository": {
"type": "git",
"url": "https://github.com/APIDevTools/swagger-parser.git"
},
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf .nyc_output coverage",
"lint": "eslint lib test",
"lint:fix": "eslint --fix lib test",
"test": "npm run test:node && npm run test:typescript",
"test:node": "mocha",
"test:typescript": "tsc --noEmit --strict --skipDefaultLibCheck --skipLibCheck --lib esnext,dom test/specs/typescript-definition.spec.ts",
"coverage": "npm run coverage:node",
"coverage:node": "cross-env QUICK_TEST=true nyc mocha"
},
"devDependencies": {
"@eslint/compat": "^1.3.0",
"@eslint/js": "^9.29.0",
"@jsdevtools/host-environment": "^2.1.2",
"@types/node": "^24.0.3",
"chai": "^5",
"cross-env": "^7.0.3",
"esbuild": "^0.25.5",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsdoc": "^51.0.1",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.2.0",
"js-yaml": "^4.1.0",
"mocha": "^11.6.0",
"nyc": "^17.1.0",
"openapi-types": "^12.1.3",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "14.0.1",
"@apidevtools/openapi-schemas": "^2.1.0",
"@apidevtools/swagger-methods": "^3.0.2",
"ajv": "^8.17.1",
"ajv-draft-04": "^1.0.0",
"call-me-maybe": "^1.0.2"
},
"peerDependencies": {
"openapi-types": ">=7"
},
"packageManager": "yarn@4.9.1"
}