UNPKG

2.17 kBJSONView Raw
1{
2 "name": "eslint-plugin-mocha",
3 "version": "8.1.0",
4 "description": "Eslint rules for mocha.",
5 "engines": {
6 "node": ">=10.0.0"
7 },
8 "main": "index.js",
9 "files": [
10 "index.js",
11 "lib/",
12 "LICENSE",
13 "README.md"
14 ],
15 "scripts": {
16 "pretest": "eslint .",
17 "test": "npm run test:unit:with-coverage && npm run test:bench",
18 "test:unit": "mocha test --recursive --reporter dot",
19 "test:unit:with-coverage": "nyc npm run test:unit",
20 "test:bench": "mocha -t 1200000 benchmarks",
21 "coveralls": "cat ./build/coverage/lcov.info | coveralls",
22 "changelog": "pr-log"
23 },
24 "dependencies": {
25 "eslint-utils": "^2.1.0",
26 "ramda": "^0.27.1"
27 },
28 "devDependencies": {
29 "chai": "^4.2.0",
30 "coveralls": "^3.1.0",
31 "eslint": "^7.5.0",
32 "eslint-config-holidaycheck": "^0.13.1",
33 "eslint-plugin-node": "^11.1.0",
34 "eslint-plugin-unicorn": "^21.0.0",
35 "mocha": "^8.1.0",
36 "nyc": "^15.1.0",
37 "pr-log": "^4.0.0",
38 "semver": "^7.3.4"
39 },
40 "peerDependencies": {
41 "eslint": ">=7.0.0"
42 },
43 "repository": {
44 "type": "git",
45 "url": "git://github.com/lo1tuma/eslint-plugin-mocha.git"
46 },
47 "author": "Mathias Schreck <schreck.mathias@gmail.com>",
48 "contributors": [
49 "Alexander Schmidt <alexanderschmidt1@gmail.com>"
50 ],
51 "license": "MIT",
52 "bugs": {
53 "url": "https://github.com/lo1tuma/eslint-plugin-mocha/issues"
54 },
55 "homepage": "https://github.com/lo1tuma/eslint-plugin-mocha",
56 "keywords": [
57 "eslint",
58 "eslintplugin",
59 "eslint-plugin",
60 "mocha"
61 ],
62 "nyc": {
63 "all": true,
64 "cache": false,
65 "lines": 100,
66 "statements": 100,
67 "functions": 100,
68 "branches": 100,
69 "exclude": [
70 ".ncurc.js",
71 "build",
72 "test",
73 "benchmarks/"
74 ],
75 "reporter": [
76 "lcov",
77 "text-summary"
78 ],
79 "check-coverage": true,
80 "report-dir": "build"
81 }
82}