-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 865 Bytes
/
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
{
"name": "open-api-to-schema",
"version": "1.0.12",
"description": "Open API / Swagger file to JSON Schema Converter",
"main": "dist/index.js",
"scripts": {
"start": "ts-node-dev --inspect src/index.ts",
"build": "tsc --declaration -p .",
"test": "jest"
},
"keywords": [
"open-api",
"swagger",
"json-schema",
"converter",
"validation"
],
"author": "Dominic Ginger",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/js-yaml": "^3.12.0",
"@types/node": "^10.12.21",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.3.1"
},
"dependencies": {
"js-yaml": "^3.12.1"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/DominicGinger/open-api-to-schema.git"
}
}