{
	"name": "random-flight-generator",
	"version": "1.0.17",
	"description": "A tool for generating random flights.",
	"main": "lib/index.js",
	"types": "lib/index.d.ts",
	"scripts": {
		"start": "eslint . --ext .ts && tsc && node lib/index.js",
		"build": "rm -rf lib/ && tsc",
		"lib": "node lib/index.js",
		"test": "npm run build && jest",
		"watch": "jest --watchAll",
		"generateJson": "node ./lib/scripts/generateAirports.js",
		"lint": "eslint . --ext .ts",
		"prepare": "npm run build",
		"preversion": "npm run lint",
		"version": "git add -A src",
		"postversion": "git push && git push --tags"
	},
	"author": "Gustavo Abranches",
	"license": "ISC",
	"devDependencies": {
		"@types/jest": "^26.0.14",
		"@types/lodash": "^4.14.159",
		"@types/node": "^14.11.1",
		"@typescript-eslint/eslint-plugin": "^4.1.1",
		"@typescript-eslint/parser": "^4.1.1",
		"axios": "^0.19.2",
		"eslint": "^7.9.0",
		"jest": "^26.4.2",
		"typescript": "^4.0.3"
	},
	"files": [
		"lib/**/*"
	],
	"dependencies": {
		"lodash": "^4.17.20"
	},
	"keywords": [
		"Random",
		"Flight",
		"Simulator"
	],
	"repository": {
		"type": "git",
		"url": "https://github.com/gabranches/random-flight-generator.git"
	}
}
