-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "openapi-mock-validator",
"version": "0.3.0",
"description": "Validate JSON payloads against OpenAPI 3.0/3.1 specs — catch mock drift before it hits production",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"test:ci": "vitest run --coverage",
"lint": "eslint src/ tests/"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"openapi",
"mock",
"validator",
"contract-testing",
"api",
"json-schema"
],
"author": "BRIKEV (https://github.com/BRIKEV)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BRIKEV/openapi-mock-validator.git"
},
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"@apidevtools/json-schema-ref-parser": "^15.3.5",
"path-to-regexp": "^8.4.2"
},
"devDependencies": {
"typescript": "^5.8.3",
"vitest": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5"
}
}