{
	"name": "openapi-doc",
	"version": "5.0.4",
	"description": "Programmatically builds an Open API (Swagger 2.0) document as an Express endpoint so that the documentation and source can live together in one place. It is like annotating an Express endpoint. Later, the API can be bound to Express.",
	"homepage": "https://platform.axway.com",
	"author": {
		"name": "Axway",
		"email": "support@axway.com",
		"url": "https://axway.com"
	},
	"license": "SEE LICENCE IN LICENSE",
	"keywords": [
		"amplify",
		"api-builder",
		"axway",
		"openapi",
		"swagger"
	],
	"engines": {
		"node": ">=8.9"
	},
	"main": "src/index.js",
	"files": [
		"src",
		"README.md",
		"LICENSE"
	],
	"dependencies": {
		"@axway/api-builder-uri-utils": "1.0.0"
	},
	"devDependencies": {
		"@apidevtools/swagger-parser": "10.0.3"
	},
	"repository": {
		"type": "git",
		"url": "https://git.ecd.axway.int/amplify/api-builder"
	},
	"nyc": {
		"statements": 99.82,
		"branches": 97.38,
		"lines": 99.82
	},
	"scripts": {
		"build": "npm run clean && npm run build:dev",
		"build:dev": "npm run build:lint && npm run test && npm run build:readme",
		"build:lint": "eslint .",
		"build:lint:fix": "eslint . --fix",
		"build:readme": "node-readme && shx mv README.md README.hbs && jsdoc2md --template README.hbs src/index.js > README.md && shx rm -rf README.hbs",
		"clean": "shx rm -rf coverage doc .nyc_output",
		"test": "nyc mocha ./test",
		"test:watch": "npm test -- --watch",
		"check:dependencies": "npm run check:used && npm run check:unused",
		"check:used": "dependency-check ./package.json",
		"check:unused": "dependency-check ./package.json --unused --no-dev -i deep-equal"
	},
	"gitHead": "4668f1623276c8f164ff7856b2f14036e73f637c"
}
