-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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": "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": "npm run format && npm run lint && tsc && cp -rfv ./src/templates ./lib",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts --output-file ./eslint-report.json --format json && eslint . --ext .ts --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": {
"@types/jest": "^27.5.2",
"@types/lodash": "^4.17.10",
"@types/node": "^20.11.21",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "8.56",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0",
"jest-junit": "^13.2.0",
"openapi3-ts": "^4.2.2",
"prettier": "^3.3.3",
"rxjs": "^7.6.0",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": ">=1.7.8",
"handlebars": ">=4.x",
"lodash": ">=4.x",
"pluralize": "^8.0.0"
},
"peerDependencies": {
"axios": ">=1.x",
"handlebars": ">=4.x",
"lodash": ">=4.x",
"rxjs": "*"
}
}