30 lines
962 B
JSON
30 lines
962 B
JSON
{
|
|
"name": "static-testing-tools",
|
|
"private": true,
|
|
"author": "Kent C. Dodds (http://kentcdodds.com/)",
|
|
"license": "GPLv3",
|
|
"scripts": {
|
|
"build": "babel src --out-dir dist",
|
|
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
|
|
"check-types": "tsc",
|
|
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json)\"",
|
|
"format": "npm run prettier -- --write",
|
|
"check-format": "npm run prettier -- --list-different",
|
|
"validate": "npm-run-all --parallel check-types check-format lint build"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.5.5",
|
|
"@babel/core": "^7.5.5",
|
|
"@babel/preset-env": "^7.5.5",
|
|
"@typescript-eslint/eslint-plugin": "^2.0.0",
|
|
"@typescript-eslint/parser": "^2.0.0",
|
|
"eslint": "^6.1.0",
|
|
"eslint-config-prettier": "^6.0.0",
|
|
"husky": "^3.0.2",
|
|
"lint-staged": "^9.2.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^1.18.2",
|
|
"typescript": "^3.5.3"
|
|
}
|
|
}
|