forked from olivierlsc/swagger-express-ts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·94 lines (94 loc) · 2.78 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
{
"name": "swagger-express-ts2",
"version": "1.0.3",
"description": "Generate and serve swagger.json by express",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"scripts": {
"package": "echo \"Packaging...\" && npm run clean && node node_modules/typescript/bin/tsc -p tsconfig.package.json",
"build": "echo \"Building...\" && node node_modules/gulp/bin/gulp.js build",
"test": "echo \"Testing...\" && node node_modules/gulp/bin/gulp.js test",
"test:coverage": "echo \"Testing coverage...\" && node node_modules/gulp/bin/gulp.js test:coverage",
"clean": "echo \"Cleaning...\" && node node_modules/gulp/bin/gulp.js clean",
"tslint": "echo \"TsLint...\" && node node_modules/gulp/bin/gulp.js tslint",
"dev": "echo \"Developing...\" && node node_modules/gulp/bin/gulp.js dev",
"start": "echo \"Starting...\" && npm run build && node built/main.js",
"precommit": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "https://github.com/pesoklp13/swagger-express-ts2"
},
"author": {
"name": "Peter Sokolík"
},
"maintainers": [
{
"name": "Peter Sokolík"
}
],
"license": "MIT",
"keywords": [
"inversify",
"inversifyjs",
"swagger",
"swagger2",
"swagger-ui",
"typescript",
"expressjs",
"express",
"api rest",
"documentation",
"decorator",
"generator",
"swagger.json",
"json",
"rest"
],
"bugs": {
"url": "https://github.com/pesoklp13/swagger-express-ts2/issues?q=is%3Aopen+is%3Aissue+label%3Abug"
},
"homepage": "https://github.com/pesoklp13/swagger-specification-ts2#readme",
"dependencies": {
"@types/lodash": "^4.14.109",
"express": "^4.16.3",
"lodash": "^4.17.10",
"npm": "^6.4.1",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.3",
"@types/compression": "0.0.35",
"@types/helmet": "0.0.37",
"@types/mocha": "^2.2.48",
"@types/sinon": "^4.3.3",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"compression": "^1.7.2",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-istanbul": "^1.1.2",
"gulp-mocha": "^6.0.0",
"gulp-nodemon": "^2.2.1",
"gulp-prettier-plugin": "^1.3.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-tslint-jenkins-reporter": "^1.1.1",
"gulp-typescript": "^3.2.4",
"helmet": "^3.12.1",
"inversify": "^4.13.0",
"inversify-express-utils": "^4.2.2",
"mocha": "^4.0.1",
"prettier": "1.12.0",
"pretty-quick": "^1.4.1",
"rimraf": "^2.6.2",
"sinon": "^4.5.0",
"swagger-ui-dist": "^3.17.0",
"ts-node": "^6.1.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.10.0",
"typescript": "^2.9.1"
}
}