-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "fastify-swaggergen",
"version": "1.1.6",
"description": "generate a fastify configuration from a swagger specification",
"main": "index.js",
"scripts": {
"start": "fastify start examples/petstore/index.js",
"test": "tap test/test-*.js",
"dev": "fastify start -l info -P examples/petstore/index.js",
"updateChecksums": "node bin/swaggergen-cli -c test/test-swagger.v2.json > test/test-swagger.v2.checksums.json",
"postupdateChecksums": "node bin/swaggergen-cli -c test/test-swagger-noBasePath.v2.json > test/test-swagger-noBasePath.v2.checksums.json"
},
"author": "Hans Klunder",
"license": "MIT",
"bin": {
"swaggergen": "./bin/swaggergen-cli.js"
},
"dependencies": {
"ajv-oai": "^1.2.0",
"fastify-plugin": "^1.6.1",
"fastify-swagger": "^2.5.1",
"js-yaml": "^3.13.1",
"minimist": "^1.2.5",
"swagger-parser": "^9.0.1"
},
"directories": {
"example": "./examples",
"test": "./test",
"lib": "./examples",
"bin": "./bin"
},
"devDependencies": {
"fastify": "^2.15.1",
"fastify-cli": "^2.2.0",
"tap": "^14.10.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seriousme/fastify-swaggergen.git"
},
"keywords": [
"fastify",
"swagger",
"generator"
],
"bugs": {
"url": "https://github.com/seriousme/fastify-swaggergen/issues"
},
"homepage": "https://github.com/seriousme/fastify-swaggergen#readme"
}