eslint-plugin-jest
Version:
Eslint rules for Jest
97 lines (96 loc) • 2.07 kB
JSON
{
"name": "eslint-plugin-jest",
"version": "21.16.1",
"description": "Eslint rules for Jest",
"repository": "jest-community/eslint-plugin-jest",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": {
"name": "Jonathan Kim",
"email": "hello@jkimbo.com",
"url": "jkimbo.com"
},
"files": [
"docs/",
"rules/",
"processors/",
"index.js"
],
"engines": {
"node": ">= 4"
},
"peerDependencies": {
"eslint": ">=3.6"
},
"scripts": {
"lint": "eslint . --ignore-pattern '!.eslintrc.js'",
"prettylint": "prettylint docs/**/*.md README.md package.json",
"test": "jest",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"devDependencies": {
"@commitlint/cli": "^6.0.1",
"@commitlint/config-conventional": "^6.0.2",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-eslint-plugin": "^1.4.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jest": "^22.0.4",
"jest-runner-eslint": "^0.4.0",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"prettylint": "^1.0.0",
"semantic-release": "^15.0.2",
"travis-deploy-once": "^4.3.1"
},
"prettier": {
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"projects": [
{
"displayName": "test",
"testEnvironment": "node"
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/**/*.js"
]
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}