blob: cbbd8d4a5300020e565d583321b78b8eba008b50 [file] [log] [blame]
{
"author": "Mathias Schreck <schreck.mathias@gmail.com>",
"bugs": {
"url": "https://github.com/lo1tuma/eslint-plugin-mocha/issues"
},
"contributors": [
"Alexander Schmidt <alexanderschmidt1@gmail.com>"
],
"dependencies": {
"eslint-utils": "^2.1.0",
"ramda": "^0.27.1"
},
"description": "Eslint rules for mocha.",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.5.0",
"eslint-config-holidaycheck": "^0.13.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^21.0.0",
"mocha": "^8.1.0",
"nyc": "^15.1.0",
"pr-log": "^4.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"index.js",
"lib/",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/lo1tuma/eslint-plugin-mocha",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"mocha"
],
"license": "MIT",
"main": "index.js",
"name": "eslint-plugin-mocha",
"nyc": {
"all": true,
"branches": 100,
"cache": false,
"check-coverage": true,
"exclude": [
".ncurc.js",
"build",
"test",
"benchmarks/"
],
"functions": 100,
"lines": 100,
"report-dir": "build",
"reporter": [
"lcov",
"text-summary"
],
"statements": 100
},
"peerDependencies": {
"eslint": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/lo1tuma/eslint-plugin-mocha.git"
},
"scripts": {
"changelog": "pr-log",
"coveralls": "cat ./build/coverage/lcov.info | coveralls",
"pretest": "eslint .",
"test": "npm run test:unit:with-coverage && npm run test:bench",
"test:bench": "mocha -t 10000 benchmarks",
"test:unit": "mocha test --recursive --reporter dot",
"test:unit:with-coverage": "nyc npm run test:unit"
},
"version": "8.0.0"
}