-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
102 lines (102 loc) · 2.46 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
95
96
97
98
99
100
101
102
{
"name": "restify-swagger-jsdoc",
"version": "3.3.0",
"description": "Create Swagger documentation page based on jsdoc",
"main": "js/index.js",
"scripts": {
"build": "rm -rf js && tsc --project tsconfig-build.json",
"lint": "tslint --fix -t verbose --project tsconfig.json -c tslint.json ./src/*.ts ./tests/*.ts",
"test": "npm run test:unit && npm run test:server",
"test:unit": "mocha tests --require ts-node/register --bail ./tests/index.ts",
"test:server": "./tests/test-server.sh",
"cover": "nyc --report-dir tests/coverage npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RemyJeancolas/restify-swagger-jsdoc.git"
},
"keywords": [
"restify",
"swagger",
"jsdoc",
"api"
],
"author": {
"name": "Rémy Jeancolas",
"url": "https://github.com/RemyJeancolas",
"email": "[email protected]"
},
"contributors": [
{
"name": "Yannick Cordinier",
"url": "https://github.com/speedazerty"
},
{
"name": "Jared",
"url": "https://github.com/jad007"
},
{
"name": "Mitchell Bundy",
"url": "https://github.com/mgebundy",
"email": "[email protected]"
},
{
"name": "Chris McKnight",
"url": "https://github.com/cmckni3"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/RemyJeancolas/restify-swagger-jsdoc/issues"
},
"homepage": "https://github.com/RemyJeancolas/restify-swagger-jsdoc#readme",
"dependencies": {
"mime-types": "^2.1.34",
"restify-errors": "^8.0.2",
"swagger-jsdoc": "^3.7.0",
"swagger-ui-dist": "^4.10.3"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^8.10.66",
"@types/restify": "^8.5.4",
"@types/restify-errors": "^4.3.4",
"@types/sinon": "^4.3.3",
"chai": "^4.3.4",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"restify": "^8.6.0",
"sinon": "^8.1.1",
"ts-node": "^6.2.0",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^3.9.10"
},
"peerDependencies": {
"restify": ">=7"
},
"typings": "index.d.ts",
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"index.d.ts",
"typings.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text-summary",
"lcov"
],
"all": true
}
}