-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
83 lines (83 loc) · 2.28 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
{
"name": "typescript-rest-swagger",
"version": "1.1.7",
"description": "Generate Swagger files from a typescript-rest project",
"keywords": [
"typescript",
"typescript-rest",
"swagger",
"open api",
"rest",
"microservice",
"codegen",
"generation"
],
"main": "./dist/decorators.js",
"typings": "./dist/decorators.d.ts",
"scripts": {
"start": "tsc -w",
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"lint:fix": "tslint --fix ./src/**/*.ts ./test/**/*.ts -t verbose",
"swagger-gen": "node ./dist/cli.js -c ./test/data/swagger.js",
"pretest": "cross-env NODE_ENV=test npm run build && npm run lint",
"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"
},
"author": "Thiago da Rosa de Bustamante <[email protected]>",
"license": "MIT",
"dependencies": {
"argparse": "^1.0.10",
"debug": "^4.3.1",
"fs-extra-promise": "^1.0.1",
"glob": "^7.1.7",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"minimatch": "^3.0.4",
"mkdirp": "^1.0.4",
"path": "^0.12.7",
"swagger2openapi": "^7.0.6",
"typescript": "^4.1.3",
"typescript-rest": "^3.0.4",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/argparse": "^1.0.38",
"@types/debug": "^4.1.5",
"@types/fs-extra-promise": "^1.0.9",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/minimatch": "^3.0.4",
"@types/mkdirp": "^1.0.1",
"@types/yamljs": "^0.2.31",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"jest": "^27.0.4",
"jsonata": "^1.8.4",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/thiagobustamante/typescript-rest-swagger.git"
},
"bin": {
"swaggerGen": "dist/cli.js"
},
"directories": {
"lib": "dist",
"doc": "doc"
},
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true
}