prettifier
Version:
Setup prettier and commit hooks automatically
48 lines (47 loc) • 1.01 kB
JSON
{
"name": "prettifier",
"version": "0.4.0",
"description": "Setup prettier and commit hooks automatically",
"main": "index.js",
"author": "Netto Farah",
"license": "MIT",
"homepage": "http://github.com/nettofarah/prettifier",
"repository": {
"type": "git",
"url": "https://github.com/nettofarah/prettifier.git"
},
"keywords": [
"prettier",
"lint-staged",
"husky",
"prettier config"
],
"dependencies": {
"chalk": "^2.1.0",
"execa": "^0.10.0",
"fs-promise": "^2.0.3",
"has-yarn": "^1.0.0",
"inquirer": "^3.2.2",
"listr": "^0.12.0",
"lodash": "^4.17.4",
"package-json-validator": "^0.6.2"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"fmt": "prettier --write './**/*.js'"
},
"bin": {
"prettifier": "./bin/prettifier.js"
}
}