forked from olivierlsc/swagger-express-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·80 lines (80 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
{
"name": "swagger-express-ts",
"version": "1.0.0-beta.1",
"description": "Generate and serve swagger.json",
"main": "./dist/index.js",
"types": "./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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olivierlsc/swagger-specification-ts.git"
},
"author": "Olivier LIN-SI-CHENG",
"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/olivierlsc/swagger-specification-ts/issues"
},
"homepage": "https://github.com/olivierlsc/swagger-specification-ts#readme",
"dependencies": {
"@types/lodash": "^4.14.92",
"lodash": "^4.17.4",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"helmet": "^3.9.0",
"inversify": "^4.5.1",
"inversify-express-utils": "^4.2.2",
"@types/body-parser": "^1.16.8",
"@types/compression": "0.0.35",
"@types/helmet": "0.0.37",
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.44",
"@types/sinon": "^4.1.2",
"chai": "^4.1.2",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-istanbul": "^1.1.2",
"gulp-jenkins-reporter": "^1.0.2",
"gulp-mocha": "^4.3.1",
"gulp-nodemon": "^2.2.1",
"gulp-sourcemaps": "^2.6.1",
"gulp-tslint": "^8.1.2",
"gulp-tslint-jenkins-reporter": "^1.1.0",
"gulp-typescript": "^3.2.3",
"mocha": "^4.0.1",
"mocha-jenkins-reporter": "^0.3.10",
"rimraf": "^2.6.2",
"sinon": "^4.1.2",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"swagger-ui-dist": "^3.6.1"
}
}