-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
135 lines (135 loc) · 3.42 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "adonis5-swagger",
"version": "1.4.1",
"description": "Swagger provider for AdonisJS 5",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"dev": "tsc --watch",
"test": "jest test --runInBand --testTimeout 30000",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:files",
"copy:files": "cpx 'templates/**' 'build/templates'",
"build": "npm run compile",
"prepare": "npm run build",
"lint": "eslint . --ext=.ts --fix",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"run-prettier": "prettier --write .",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json reg2005/adonis5-swagger"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg2005/adonis5-swagger.git"
},
"keywords": [
"Adonis",
"5",
"adonis-swagger"
],
"author": "Evgeniy Ryumin",
"contributors": [
{
"name": "Vladyslav Parashchenko",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reg2005/adonis5-swagger/issues"
},
"homepage": "https://github.com/reg2005/adonis5-swagger#readme",
"types": "build/adonis-typings/index.d.ts",
"typings": "build/adonis-typings/index.d.ts",
"devDependencies": {
"@adonisjs/assembler": "^5.3.9",
"@adonisjs/core": "^5.4.2",
"@adonisjs/mrm-preset": "^5.0.2",
"@poppinss/dev-utils": "^2.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^14.17.11",
"@types/swagger-jsdoc": "^6.0.1",
"commitizen": "^4.2.4",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^4.0.1",
"doctoc": "2.1.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^2.1.0",
"eslint-plugin-prettier": "^4.0.0",
"get-port": "^6.0.0",
"github-label-sync": "^2.0.2",
"husky": "^4.3.8",
"jest": "^27.4.5",
"mrm": "^3.0.10",
"np": "^7.6.0",
"npm-audit-html": "^1.5.0",
"prettier": "^2.5.1",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-mockito": "^2.6.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"adonis-provider-tester": "1.2.0",
"pino-pretty": "^7.3.0"
},
"dependencies": {
"mime": "^3.0.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-dist": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validate-commit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"main": "build/index.js",
"files": [
"build/adonis-typings",
"build/src",
"build/index.d.ts",
"build/index.js",
"build/templates",
"build/providers",
"build/commands"
],
"adonisjs": {
"types": "adonis5-swagger",
"providers": [
"adonis5-swagger"
],
"templates": {
"basePath": "./build/templates",
"config": [
{
"src": "config.txt",
"dest": "swagger"
}
]
},
"commands": [
"adonis5-swagger/build/commands"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
}
}