-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "eslint-plugin-mocha-cleanup",
"version": "1.11.3",
"description": "Check mocha tests for empty titles and equal titles, huge number of assertions in the one test-block, invalid sinon usage etc. TDD and BDD syntaxes are supported",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"mocha",
"cleanup"
],
"repository": "git://github.com/onechiporenko/eslint-plugin-mocha-cleanup.git",
"bugs": "https://github.com/onechiporenko/eslint-plugin-mocha-cleanup/issues",
"homepage": "https://github.com/onechiporenko/eslint-plugin-mocha-cleanup",
"author": "onechiporenko",
"contributors": [
"Brett Zamir"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha -R dot \"tests/**\"",
"test:cov": "nyc --reporter=lcov npm run test",
"test:fast": "mocha -R dot \"tests/**\"",
"test:mut": "stryker run"
},
"dependencies": {
"requireindex": "~1.2.0"
},
"devDependencies": {
"@stryker-mutator/core": "^5.6.1",
"@stryker-mutator/mocha-runner": "^5.6.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"espree": "^9.3.1",
"jsonium": "^1.5.0",
"mocha": ">=7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.5.1"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT"
}