{ "name": "static-testing-tools", "private": true, "author": "Kent C. Dodds (http://kentcdodds.com/)", "license": "GPLv3", "scripts": { "build": "babel src --extensions .js,.ts,.tsx --out-dir dist", "lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .", "check-types": "tsc", "prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\"", "format": "npm run prettier -- --write", "check-format": "npm run prettier -- --list-different", "validate": "npm run check-types && npm run check-format && npm run lint && npm run build" }, "devDependencies": { "@babel/cli": "^7.7.0", "@babel/core": "^7.7.2", "@babel/preset-env": "^7.7.1", "@babel/preset-typescript": "^7.7.2", "@typescript-eslint/eslint-plugin": "^2.7.0", "@typescript-eslint/parser": "^2.7.0", "eslint": "^6.6.0", "eslint-config-prettier": "^6.5.0", "prettier": "^1.19.1", "typescript": "^3.7.2" } }