{
	"name": "tslint-react-perf",
	"version": "0.3.1",
	"description": "Lint rules related to React & JSX Performance for TSLint",
	"main": "tslint-react-perf.json",
	"scripts": {
		"build": "tsc -p ./",
		"clean": "rm -rf build/",
		"lint": "tslint --project tsconfig.json --format codeFrame",
		"test": "./scripts/test-rules",
		"verify": "run-s build lint test",
		"prepare": "run-s clean verify"
	},
	"dependencies": {
		"tsutils": "^3.14.0"
	},
	"peerDependencies": {
		"tslint": "^5.1.0",
		"typescript": ">=2.1.0 || >=2.7.0-dev || >=2.8.0-dev"
	},
	"husky": {
		"hooks": {
			"pre-commit": "lint-staged"
		}
	},
	"devDependencies": {
		"@types/colors": "^1.2.1",
		"@types/glob": "^7.1.1",
		"@types/node": "^12.6.2",
		"colors": "^1.3.3",
		"glob": "^7.1.4",
		"husky": "^3.0.0",
		"lint-staged": "^9.2.0",
		"npm-run-all": "^4.1.5",
		"path": "^0.12.7",
		"prettier": "^1.18.2",
		"tslint-config-prettier": "^1.18.0",
		"tslint": "^5.18.0",
		"typescript": "^3.5.3"
	},
	"lint-staged": {
		"**/*.{ts,tsx}": [
			"tslint --fix",
			"prettier --write",
			"git add"
		]
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/darthtrevino/tslint-react-perf.git"
	},
	"license": "Apache-2.0",
	"prettier": {
		"singleQuote": true,
		"trailingComma": "all",
		"semi": false,
		"useTabs": true
	}
}
