-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
84 lines (84 loc) · 2.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "eslint-plugin-mocha",
"version": "10.4.0",
"description": "Eslint rules for mocha.",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"main": "index.js",
"exports": "./index.js",
"files": [
"index.js",
"lib/",
"LICENSE",
"README.md"
],
"scripts": {
"format:check": "dprint check --list-different",
"format:fix": "dprint fmt",
"eslint": "eslint . --cache --cache-location './target/eslintcache' --cache-strategy content --max-warnings 0",
"lint": "npm run lint:docs && npm run lint:eslint-docs && npm run lint:js",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:eslint-docs": "npm run update:eslint-docs -- --check",
"lint:js": "npm run eslint",
"fix:all": "npm run eslint -- --fix && npm run format:fix",
"test": "npm run test:unit:with-coverage && npm run test:bench",
"test:unit": "mocha test --recursive --reporter dot",
"test:unit:with-coverage": "c8 npm run test:unit",
"test:bench": "mocha -t 2400000 benchmarks",
"coveralls": "cat ./target/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-community/eslint-utils": "^4.4.0",
"globals": "^15.9.0",
"rambda": "^9.2.1"
},
"devDependencies": {
"@ben_12/eslint-plugin-dprint": "0.13.6",
"@dprint/json": "0.19.3",
"@dprint/markdown": "0.17.5",
"@dprint/typescript": "0.91.6",
"@enormora/eslint-config-base": "0.0.13",
"@enormora/eslint-config-mocha": "0.0.6",
"@enormora/eslint-config-node": "0.0.12",
"c8": "^10.1.2",
"change-case": "^5.4.4",
"coveralls": "3.1.1",
"dprint": "0.47.2",
"eslint": "9.9.0",
"eslint-doc-generator": "1.7.1",
"eslint-plugin-eslint-plugin": "6.2.0",
"markdownlint-cli": "0.41.0",
"mocha": "10.7.3",
"pr-log": "6.1.1",
"release-it": "17.6.0",
"semver": "7.6.3"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/lo1tuma/eslint-plugin-mocha.git"
},
"author": "Mathias Schreck <[email protected]>",
"contributors": [
"Alexander Schmidt <[email protected]>",
"Christian Rackerseder <[email protected]>"
],
"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"
]
}