jest-quarantine
Version:
> A quarantine method and reporter for [jest](https://jestjs.io/) to help quite flappy tests.
62 lines (61 loc) • 1.43 kB
JSON
{
"name": "jest-quarantine",
"version": "1.1.3",
"main": "index.js",
"repository": "https://github.com/ProductPlan/jest-quarantine.git",
"author": "James Abercrombie <james@productplan.com>",
"license": "MIT",
"keywords": [
"jest",
"quarantine"
],
"files": [
"README.md",
"LICENSE.txt",
"index.js",
"reporter.js"
],
"scripts": {
"test": "jest --no-cache --verbose",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=14.13"
},
"dependencies": {
"@jest/reporters": "27.5.1",
"@jest/types": "^27.5.1",
"chalk": "4.1.2",
"date-fns": "2.28.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jasmine": "2.10.1",
"eslint-plugin-jest": "21.27.2",
"eslint-plugin-prettier": "3.4.1",
"eslint": "7.32.0",
"husky": "4.3.5",
"jest-extended": "^2.0.0",
"jest-watch-typeahead": "^1.0.0",
"jest": "^27.5.1",
"lint-staged": "10.5.3",
"mock-fs": "^5.1.2",
"node-fetch": "2.6.1",
"standard-version": "9.1.0"
}
}