-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
56 lines (56 loc) · 1.52 KB
/
package.json
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
{
"name": "openapi-validator",
"version": "0.14.0",
"description": "Common code for jest-openapi and Chai OpenAPI Response Validator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write . --ignore-path ../../.prettierignore",
"lint": "tsc --noEmit && eslint .",
"lint:fix": "yarn lint --fix",
"build": "tsc",
"test": "echo",
"test:ci": "echo",
"prepack": "yarn build"
},
"repository": "https://github.com/openapi-library/OpenAPIValidators/tree/master/packages/openapi-validator",
"author": "OpenApiChai <openapichai@gmail.com>",
"contributors": [
"rwalle61 <richard.lh.waller@gmail.com>",
"Jonny Spruce <jspruce94@gmail.com>"
],
"license": "MIT",
"keywords": [
"jest",
"chai",
"openapi",
"testing",
"response",
"validate"
],
"bugs": {
"url": "https://github.com/openapi-library/OpenAPIValidators/issues"
},
"homepage": "https://github.com/openapi-library/OpenAPIValidators#openapi-validators",
"files": [
"dist"
],
"dependencies": {
"combos": "^0.2.0",
"fs-extra": "^9.0.0",
"js-yaml": "^4.0.0",
"openapi-response-validator": "^9.2.0",
"openapi-schema-validator": "^9.2.0",
"path-parser": "^6.1.0",
"typeof": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/js-yaml": "^4.0.3",
"@types/request": "^2.48.7",
"@types/superagent": "^4.1.12",
"@types/typeof": "^1.0.0",
"openapi-types": "^9.2.0"
}
}