Files
static-testing-tools/06-install-run-and-configure-flow/package.json
Kent C. Dodds 9c51bd92fa improve things
2019-07-31 12:53:54 -06:00

21 lines
585 B
JSON

{
"name": "static-testing-tools",
"private": true,
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "GPLv3",
"scripts": {
"lint": "eslint src",
"flow": "flow",
"format": "npm run prettier -- --write",
"prettier": "prettier \"**/*.+(js|json|ts|tsx|md)\"",
"validate": "npm run lint && npm run prettier -- --list-different && npm run flow"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"flow-bin": "^0.81.0",
"prettier": "^1.18.2"
}
}