Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
eslint-plugin-mocha
/
Filename :
package.json
back
Copy
{ "name": "eslint-plugin-mocha", "version": "6.3.0", "description": "Eslint rules for mocha.", "engines": { "node": ">=8.0.0" }, "main": "index.js", "files": [ "index.js", "lib/", "LICENSE", "README.md" ], "scripts": { "pretest": "eslint .", "test": "npm run test:unit:with-coverage && npm run test:bench", "test:unit": "mocha test --recursive --reporter dot", "test:unit:with-coverage": "nyc npm run test:unit", "test:bench": "mocha benchmarks", "coveralls": "cat ./build/coverage/lcov.info | coveralls", "changelog": "pr-log" }, "dependencies": { "eslint-utils": "^2.0.0", "ramda": "^0.27.0" }, "devDependencies": { "chai": "^4.2.0", "coveralls": "^3.0.9", "eslint": "^6.8.0", "eslint-config-holidaycheck": "^0.13.1", "eslint-plugin-node": "^11.0.0", "mocha": "^7.0.1", "nyc": "^15.0.0", "pr-log": "^4.0.0" }, "peerDependencies": { "eslint": ">= 4.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>" ], "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": 100, "exclude": [ "build", "test", "benchmarks/" ], "reporter": [ "lcov", "text-summary" ], "check-coverage": true, "report-dir": "build" } }