jest-runner-groups
Version:
Tag and run groups of tests with Jest
92 lines (91 loc) • 1.69 kB
JSON
{
"name": "jest-runner-groups",
"version": "2.2.0",
"description": "Tag and run groups of tests with Jest",
"license": "MIT",
"author": "Eugene Manuilov <eugene.manuilov@gmail.com>",
"homepage": "https://github.com/eugene-manuilov/jest-runner-groups#readme",
"bugs": {
"url": "https://github.com/eugene-manuilov/jest-runner-groups/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugene-manuilov/jest-runner-groups.git"
},
"keywords": [
"jest",
"jest-runner",
"groups"
],
"files": [
"*.md",
"LICENSE",
"index.js"
],
"main": "index.js",
"engines": {
"node": ">= 10.14.2"
},
"scripts": {
"lint": "eslint . --ext .js --ignore-pattern node_modules",
"format": "npm run lint --silent -- --fix"
},
"peerDependencies": {
"jest-runner": ">= 24",
"jest-docblock": ">= 24"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.4",
"faker": "^4.1.0",
"husky": "^4.3.8"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true,
"jest": true
},
"rules": {
"func-names": "off",
"indent": [
"error",
"tab"
],
"import/no-unresolved": "off",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
],
"no-tabs": [
"error",
{
"allowIndentationTabs": true
}
],
"padded-blocks": [
"error",
{
"classes": "always"
}
],
"space-in-parens": [
"error",
"always"
],
"template-curly-spacing": [
"error",
"always"
]
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint --silent"
}
}
}