-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 985 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
{
"name": "swagger-typegen",
"version": "0.0.1",
"description": "generate source-code types from swagger-specification file",
"main": "index.js",
"bin": {
"typegen": "cli.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"codecov": "codecov",
"example": "node cli example/input.json -o example/output.ts"
},
"keywords": [],
"author": "Matthias Margot <matthiasmargot@hotmail.com>",
"license": "MIT",
"dependencies": {
"commander": "^7.2.0",
"prettier": "^1.16.4",
"ramda": "^0.27.1",
"swagger-parser": "^6.0.5"
},
"devDependencies": {
"codecov": "^3.8.2",
"jest": "^27.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatthiasMargot/swagger-typegen.git"
},
"bugs": {
"url": "https://github.com/MatthiasMargot/swagger-typegen/issues"
},
"homepage": "https://github.com/MatthiasMargot/swagger-typegen#readme"
}