-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.79 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
{
"name": "@rudi23/koa-joi-router-docs",
"version": "1.0.0",
"description": "OpenAPI(aka Swagger) API docs generator for koa-joi-router",
"keywords": [
"koa",
"router",
"joi",
"documentation",
"docs",
"openapi",
"swagger"
],
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "mocha -r intelli-espower-loader",
"prepare": "husky install",
"release": "GITHUB_TOKEN=$GITHUB_COM_TOKEN && release-it"
},
"engines": {
"node": ">= 12"
},
"author": "Krzysztof Rudowski",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rudi23/koa-joi-router-docs.git"
},
"bugs": {
"url": "https://github.com/rudi23/koa-joi-router-docs/issues"
},
"homepage": "https://github.com/rudi23/koa-joi-router-docs",
"files": [
"src/**/*"
],
"publishConfig": {
"access": "public"
},
"main": "src/index.js",
"dependencies": {
"joi-to-swagger": "6.2.0",
"lodash": "4.17.21",
"path-to-regexp": "6.2.1"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,md}": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@koa-better-modules/joi-router": "10.1.0",
"@release-it/conventional-changelog": "5.1.1",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"intelli-espower-loader": "1.1.0",
"lint-staged": "13.3.0",
"mocha": "10.7.0",
"power-assert": "1.6.1",
"prettier": "2.8.8",
"release-it": "15.11.0"
},
"optionalDependencies": {
"class-validator": "0.14.1",
"class-validator-jsonschema": "3.1.1",
"reflect-metadata": "0.2.2"
}
}