{
	"name": "volleyball",
	"version": "1.5.1",
	"description": "🏐 Tiny HTTP logger for Express showing asynchronous requests and responses",
	"engines": {
		"node": ">=4.0.0"
	},
	"homepage": "https://github.com/glebec/volleyball",
	"main": "lib/volleyball.js",
	"files": [
		"lib"
	],
	"scripts": {
		"precommit": "./scripts/precommit && lint-staged",
		"postcommit": "./scripts/postcommit",
		"prettify": "prettier --write \"**/*.{js,jsx,json,css,scss,md}\"",
		"test": "npm run build && DEBUG=http,custom mocha",
		"lint": "eslint **/*.js --ignore-path .gitignore --ignore-pattern lib",
		"build": "babel src -d lib"
	},
	"lint-staged": {
		"*.{js,jsx}": [
			"prettier --write",
			"eslint --fix --ignore-pattern lib",
			"git add"
		],
		"*.{css,scss,json,md}": [
			"prettier --write",
			"git add"
		]
	},
	"author": "Gabriel Lebec <glebec@gmail.com> (https://github.com/glebec)",
	"license": "MIT",
	"devDependencies": {
		"@babel/cli": "^7.0.0-beta.46",
		"@babel/core": "^7.0.0-beta.46",
		"@babel/preset-env": "^7.0.0-beta.46",
		"babel-eslint": "^8.2.3",
		"chai": "^4.1.2",
		"eslint": "^4.19.1",
		"eslint-config-fullstack": "^5.0.0",
		"eslint-config-prettier": "^2.9.0",
		"eslint-plugin-react": "^7.7.0",
		"express": "^4.16.3",
		"husky": "^0.14.3",
		"lint-staged": "^7.0.4",
		"mocha": "^5.1.1",
		"strip-ansi": "^4.0.0",
		"supertest": "^3.0.0"
	},
	"dependencies": {
		"chalk": "^2.4.0",
		"debug": "^3.1.0",
		"filesize": "^3.6.1"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/glebec/volleyball.git"
	},
	"bugs": "https://github.com/glebec/volleyball/issues",
	"keywords": [
		"HTTP",
		"logging",
		"logger",
		"log",
		"middleware",
		"async",
		"req",
		"res"
	]
}
