github-pages-deploy-action/node_modules/eslint-plugin-jest/package.json
2020-03-31 08:40:00 -04:00

178 lines
4.5 KiB
JSON

{
"_args": [
[
"eslint-plugin-jest@23.8.2",
"."
]
],
"_development": true,
"_from": "eslint-plugin-jest@23.8.2",
"_id": "eslint-plugin-jest@23.8.2",
"_inBundle": false,
"_integrity": "sha512-xwbnvOsotSV27MtAe7s8uGWOori0nUsrXh2f1EnpmXua8sDfY6VZhHAhHg2sqK7HBNycRQExF074XSZ7DvfoFg==",
"_location": "/eslint-plugin-jest",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "eslint-plugin-jest@23.8.2",
"name": "eslint-plugin-jest",
"escapedName": "eslint-plugin-jest",
"rawSpec": "23.8.2",
"saveSpec": null,
"fetchSpec": "23.8.2"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-23.8.2.tgz",
"_spec": "23.8.2",
"_where": ".",
"author": {
"name": "Jonathan Kim",
"email": "hello@jkimbo.com",
"url": "jkimbo.com"
},
"bugs": {
"url": "https://github.com/jest-community/eslint-plugin-jest/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^2.5.0"
},
"description": "Eslint rules for Jest",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/git": "^7.0.17",
"@types/eslint": "^6.1.3",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.6",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"babel-jest": "^24.9.0",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"eslint": "^5.1.0 || ^6.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-eslint-plugin": "^2.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-runner-eslint": "^0.7.1",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1",
"prettylint": "^1.0.0",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.28",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=8"
},
"files": [
"docs/",
"lib/"
],
"homepage": "https://github.com/jest-community/eslint-plugin-jest#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"projects": [
{
"displayName": "test",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/lib/.*"
]
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/**/*.{js,ts}"
],
"testPathIgnorePatterns": [
"<rootDir>/lib/.*"
]
}
]
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
},
"main": "lib/",
"name": "eslint-plugin-jest",
"peerDependencies": {
"eslint": ">=5"
},
"prettier": {
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jest-community/eslint-plugin-jest.git"
},
"scripts": {
"build": "babel --extensions .js,.ts src --out-dir lib --copy-files",
"lint": "eslint . --ignore-pattern '!.eslintrc.js' --ext js,ts",
"postbuild": "rimraf lib/__tests__ lib/**/__tests__",
"prepare": "yarn build && yarn postbuild",
"prepublishOnly": "yarn build",
"pretest": "yarn build",
"prettylint": "prettylint docs/**/*.md README.md package.json",
"test": "jest",
"typecheck": "tsc -p ."
},
"version": "23.8.2"
}