forked from thiagobustamante/typescript-rest-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.15 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
{
"name": "@nmshd/typescript-rest-swagger",
"version": "1.4.1",
"description": "Generate Swagger files from a typescript-rest project",
"keywords": [
"typescript",
"typescript-rest",
"swagger",
"open api",
"rest",
"microservice",
"codegen",
"generation"
],
"repository": {
"type": "git",
"url": "https://github.com/thiagobustamante/typescript-rest-swagger.git"
},
"license": "MIT",
"author": "Thiago da Rosa de Bustamante <[email protected]>",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"swaggerGen": "dist/cli.js"
},
"directories": {
"lib": "dist",
"doc": "doc"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"start": "tsc -w",
"swagger-gen": "node ./dist/cli.js -c ./test/data/swagger.js",
"pretest": "cross-env NODE_ENV=test npm run build",
"test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js",
"test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage --coverageReporters=text-lcov",
"tsc": "tsc"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@nmshd/typescript-rest": "^3.0.5",
"argparse": "^2.0.1",
"debug": "^4.3.4",
"fs-extra-promise": "^1.0.1",
"glob": "^10.3.10",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"minimatch": "^9.0.3",
"openapi-types": "^12.1.3",
"ts-morph": "^23.0.0",
"typescript": "^5.5.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@js-soft/license-check": "^1.0.9",
"@types/argparse": "^2.0.14",
"@types/debug": "^4.1.12",
"@types/fs-extra-promise": "^1.0.13",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.14.202",
"@types/minimatch": "^5.1.2",
"@types/yamljs": "^0.2.34",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jsonata": "^2.0.3",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true,
"publishConfig": {
"access": "public"
}
}