-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.51 KB
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
{
"name": "openapi-ts-generator",
"version": "0.0.0",
"description": "Based on swagger-ts-generator, this is a type script model generator specifically for services with OpenApi spec documentation.",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.js",
"require": "./index.js",
"types": "./index.d.ts"
},
"./enums": {
"import": "./enums/index.js",
"require": "./enums/index.js",
"types": "./enums/index.d.ts"
}
},
"scripts": {
"build": "tsc && cp -rfv ./src/templates ./lib",
"format": "prettier --write \"src/**/*.ts\"",
"lint-json": "eslint --output-file ./eslint-report.json --format json",
"lint-html": "eslint --output-file ./eslint-report.html --format html",
"link": "npm run build && cd lib && npm link && cd ..",
"test": "npm run build && jest --collect-coverage",
"prep:lib": "rm -rv ./lib/*.spec.* && rm -rv ./lib/**/*.spec.* && cp -v ./package.json ./lib/ && cp -v ./LICENSE ./lib/ && cp -v ./README.md ./lib/",
"debug": "npm run build && node --inspect-brk ./lib/app.js"
},
"author": {
"name": "Isaac Martinez <@ikemtz>"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikemtz/OpenApi-TS-Generator.git"
},
"keywords": [
"OpenAPI",
"TypeScript",
"TS",
"Interfaces",
"Angular",
"Swagger"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ikemtz/OpenApi-TS-Generator/issues"
},
"files": [
"**/*"
],
"homepage": "https://github.com/ikemtz/OpenApi-TS-Generator#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@jest/globals": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.23",
"@types/node": "^22.19.7",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"jest": "^30.2.0",
"jest-junit": "^17.0.0",
"jest-util": "^30.2.0",
"openapi3-ts": "^4.5.0",
"prettier": "^3.8.1",
"rxjs": "^7.6.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"dependencies": {
"axios": "^1.13.5",
"handlebars": ">=4.x",
"lodash": "^4.17.23",
"pluralize": ">=8.x"
},
"peerDependencies": {
"handlebars": ">=4.x",
"pluralize": ">=8.x",
"rxjs": "*"
}
}