-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.54 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
{
"name": "@scottnonnenberg/eslint-compare-config",
"version": "1.1.0",
"description": "A tool to compare two eslint configurations.",
"main": "index.js",
"bin": {
"eslint-compare-config": "bin/eslint-compare-config"
},
"scripts": {
"release": "standard-version",
"lint": "eslint .",
"test": "npm run all && npm run lint",
"test-coverage": "npm run all-coverage && npm run lint",
"ci": "npm run test-coverage && npm run send-to-codecov",
"mocha": "NODE_ENV=test mocha --recursive --require test/setup.js",
"mocha-watch": "npm run mocha -- --watch",
"mocha-coverage": "NODE_ENV=test istanbul cover _mocha -- --recursive --require test/setup.js",
"unit": "npm run mocha -- -s 15 test/unit",
"unit-watch": "npm run mocha-watch -- -s 15 test/unit",
"unit-coverage": "npm run mocha-coverage -- test/unit",
"integration": "npm run mocha -- -s 15 test/integration",
"integration-watch": "npm run mocha-watch -- -s 15 test/integration",
"integration-coverage": "npm run mocha-coverage -- test/integration",
"all": "npm run mocha -- -s 15 test/unit test/integration",
"all-watch": "npm run mocha-watch -- -s 15 test/unit test/integration",
"all-coverage": "npm run mocha-coverage -- test/unit test/integration",
"send-to-codecov": "codecov",
"open-coverage": "open coverage/lcov-report/index.html"
},
"dependencies": {
"chalk": "^4.1.0",
"dashdash": "^2.0.0",
"deep-equal": "^2.0.5",
"deep-diff": "^1.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@scottnonnenberg/eslint-config-thehelp": "0.9.0",
"@scottnonnenberg/eslint-plugin-thehelp": "0.5.0",
"app-module-path": "2.2.0",
"chai": "4.3.4",
"eslint-plugin-bdd": "2.1.1",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-immutable": "1.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-security": "1.4.0",
"eslint": "8.4.1",
"ghooks": "2.0.4",
"istanbul": "0.4.5",
"mocha": "9.1.3",
"standard-version": "9.3.2",
"strip-ansi": "6.0.0",
"validate-commit-msg": "2.14.0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"maxSubjectLength": 72
}
},
"author": "Scott Nonnenberg <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/scottnonnenberg/eslint-compare-config",
"repository": {
"type": "git",
"url": "[email protected]:scottnonnenberg/eslint-compare-config.git"
}
}