22 lines
674 B
JSON
22 lines
674 B
JSON
{
|
|
"name": "static-testing-tools",
|
|
"private": true,
|
|
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
|
|
"license": "GPLv3",
|
|
"scripts": {
|
|
"lint": "eslint --ext .js,.ts,.tsx .",
|
|
"check-types": "tsc",
|
|
"format": "npm run prettier -- --write",
|
|
"prettier": "prettier \"**/*.+(js|json|ts)\"",
|
|
"validate": "npm run lint && npm run prettier -- --list-different && npm run check-types"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^1.13.0",
|
|
"@typescript-eslint/parser": "^1.13.0",
|
|
"eslint": "^6.1.0",
|
|
"eslint-config-prettier": "^6.0.0",
|
|
"prettier": "^1.18.2",
|
|
"typescript": "^3.5.3"
|
|
}
|
|
}
|