-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 993 Bytes
/
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
{
"name": "@astro-my/swagger-generator",
"version": "0.0.2",
"description": "Astro API documentation tool using joi schema",
"main": "src/index.js",
"author": "Rahul Khanna ([email protected])",
"license": "MIT",
"keywords": [
"swagger",
"joi",
"converter"
],
"dependencies": {
"@hapi/joi": "^16.1.8",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"hapi-joi-to-swagger": "^3.2.0",
"joi": "^14.3.1",
"joi-to-swagger": "^3.3.0",
"lodash": "^4.17.15",
"yargs": "^15.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-astro": "^1.0.8",
"eslint-plugin-import": "^2.19.1"
},
"scripts": {
"lint": "eslint ./src",
"test": "astro-swagger-generator -v ./testdata -h ./swagger/header.json -o ./swagger/swagger.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khanna91/astro-swagger-generator.git"
},
"bin": {
"astro-swagger-generator": "./src/index.js"
}
}