This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
84 lines (84 loc) · 2.07 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
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
{
"name": "oas-normalize",
"version": "11.0.0",
"description": "Tooling for converting, validating, and parsing OpenAPI, Swagger, and Postman API definitions",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./lib/types": {
"require": "./dist/lib/types.cjs",
"import": "./dist/lib/types.js"
},
"./lib/utils": {
"require": "./dist/lib/utils.cjs",
"import": "./dist/lib/utils.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"keywords": [
"api",
"apidoc",
"apis",
"documentation",
"microservice",
"oai",
"oas",
"openapi",
"openapi document",
"openapi initiative",
"openapi spec",
"openapi specification",
"postman",
"swagger"
],
"repository": {
"type": "git",
"url": "git://github.com/readmeio/oas-normalize.git"
},
"bugs": {
"url": "https://github.com/readmeio/oas-normalize/issues"
},
"scripts": {
"build": "tsup",
"lint": "eslint . --ext .js,.ts && npm run prettier",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --list-different \"./**/**.{md,js,ts}\"",
"prettier:write": "prettier --list-different --write \"./**/**.{md,js,ts}\"",
"test": "vitest --coverage"
},
"license": "MIT",
"dependencies": {
"@readme/openapi-parser": "^2.5.0",
"@readme/postman-to-openapi": "^4.1.0",
"js-yaml": "^4.1.0",
"openapi-types": "^12.1.3",
"swagger2openapi": "^7.0.8"
},
"devDependencies": {
"@readme/eslint-config": "^13.0.1",
"@readme/oas-examples": "^5.12.0",
"@types/js-yaml": "^4.0.5",
"@vitest/coverage-v8": "^0.34.1",
"eslint": "^8.46.0",
"fetch-mock": "^9.11.0",
"prettier": "^3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"prettier": "@readme/eslint-config/prettier"
}