eslint-plugin-mocha
Version:
Eslint rules for mocha.
94 lines (93 loc) • 2.76 kB
JSON
{
"name": "eslint-plugin-mocha",
"version": "10.5.0",
"description": "Eslint rules for mocha.",
"engines": {
"node": ">=14.0.0"
},
"main": "index.js",
"files": [
"index.js",
"lib/",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "run-p --continue-on-error lint:*",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:eslint-docs": "npm-run-all \"update:eslint-docs -- --check\"",
"lint:js": "eslint .",
"test": "npm-run-all test:unit:with-coverage test:bench",
"test:unit": "mocha test --recursive --reporter dot",
"test:unit:with-coverage": "nyc npm run test:unit",
"test:bench": "mocha -t 2400000 benchmarks",
"coveralls": "cat ./build/coverage/lcov.info | coveralls",
"changelog": "pr-log",
"update:eslint-docs": "eslint-doc-generator --ignore-config all --url-configs \"https://github.com/lo1tuma/eslint-plugin-mocha#configs\"",
"release": "release-it"
},
"dependencies": {
"eslint-utils": "^3.0.0",
"globals": "^13.24.0",
"rambda": "^7.4.0"
},
"devDependencies": {
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "8.39.0",
"eslint-doc-generator": "^1.0.2",
"eslint-plugin-eslint-plugin": "^5.0.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^45.0.1",
"markdownlint-cli": "^0.32.2",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"pr-log": "^5.0.0",
"release-it": "^16.2.0",
"semver": "^7.3.8"
},
"peerDependencies": {
"eslint": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/lo1tuma/eslint-plugin-mocha.git"
},
"author": "Mathias Schreck <schreck.mathias@gmail.com>",
"contributors": [
"Alexander Schmidt <alexanderschmidt1@gmail.com>",
"Christian Rackerseder <github@echooff.de>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lo1tuma/eslint-plugin-mocha/issues"
},
"homepage": "https://github.com/lo1tuma/eslint-plugin-mocha",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"mocha"
],
"nyc": {
"all": true,
"cache": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 96,
"exclude": [
".ncurc.js",
"build",
"test",
"benchmarks/"
],
"reporter": [
"lcov",
"text-summary"
],
"check-coverage": true,
"report-dir": "build"
}
}