forked from lo1tuma/eslint-plugin-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.09 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
{
"name": "eslint-plugin-mocha",
"version": "8.0.0",
"description": "Eslint rules for mocha.",
"engines": {
"node": ">=10.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 -t 1200000 benchmarks",
"coveralls": "cat ./build/coverage/lcov.info | coveralls",
"changelog": "pr-log"
},
"dependencies": {
"eslint-utils": "^2.1.0",
"ramda": "^0.27.1"
},
"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"
},
"peerDependencies": {
"eslint": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/lo1tuma/eslint-plugin-mocha.git"
},
"author": "Mathias Schreck <[email protected]>",
"contributors": [
"Alexander Schmidt <[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"
],
"nyc": {
"all": true,
"cache": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
".ncurc.js",
"build",
"test",
"benchmarks/"
],
"reporter": [
"lcov",
"text-summary"
],
"check-coverage": true,
"report-dir": "build"
}
}