forked from ferdikoomen/openapi-typescript-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.83 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "openapi-typescript-codegen",
"version": "0.2.7",
"description": "NodeJS library that generates Typescript or Javascript clients based on the OpenAPI specification.",
"author": "Ferdi Koomen",
"homepage": "https://github.com/ferdikoomen/openapi-typescript-codegen",
"repository": {
"type": "git",
"url": "git+https://github.com/ferdikoomen/openapi-typescript-codegen.git"
},
"bugs": {
"url": "https://github.com/ferdikoomen/openapi-typescript-codegen/issues"
},
"license": "MIT",
"keywords": [
"openapi",
"swagger",
"codegen",
"generator",
"client",
"typescript",
"javascript",
"yaml",
"json",
"fetch",
"xhr",
"node"
],
"maintainers": [
{
"name": "Ferdi Koomen",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openapi": "bin/index.js"
},
"files": [
"bin/index.js",
"dist/index.js",
"dist/index.d.ts",
"dist/**/*.js",
"dist/**/*.d.ts",
"src/templates/**/*.hbs",
"src/templates/**/*.ts"
],
"scripts": {
"clean": "rimraf ./dist ./test/result ./coverage",
"build": "tsc",
"run": "tsc && node ./test/index.js",
"test": "tsc && jest",
"test:update": "tsc && jest --updateSnapshot",
"test:watch": "tsc && jest --watch",
"test:coverage": "tsc && jest --coverage",
"eslint": "eslint \"./src/**/*.ts\"",
"eslint:fix": "eslint \"./src/**/*.ts\" --fix",
"prettier": "prettier \"./src/**/*.ts\" --check",
"prettier:fix": "prettier \"./src/**/*.ts\" --write",
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b"
},
"dependencies": {
"camelcase": "5.3.1",
"commander": "5.0.0",
"handlebars": "4.7.6",
"js-yaml": "3.13.1",
"mkdirp": "1.0.4",
"path": "0.12.7",
"rimraf": "3.0.2"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-typescript": "7.9.0",
"@types/jest": "25.2.1",
"@types/js-yaml": "3.12.3",
"@types/mkdirp": "1.0.0",
"@types/node": "13.13.0",
"@types/rimraf": "3.0.0",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"codecov": "3.6.5",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-simple-import-sort": "5.0.2",
"glob": "7.1.6",
"jest": "25.4.0",
"jest-cli": "25.4.0",
"prettier": "2.0.4",
"typescript": "3.8.3"
}
}