-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
118 lines (118 loc) · 3.31 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "eslint-find-rules",
"version": "5.0.0",
"description": "Find built-in ESLint rules you don't have in your custom config.",
"main": "dist/lib/rule-finder.js",
"exports": {
".": "./dist/lib/rule-finder.js",
"./package.json": "./package.json"
},
"scripts": {
"cover": "nyc --reporter=lcov --reporter=text --reporter=html npm run tests-only",
"lint": "eslint .",
"pretest": "npm run lint",
"tests-only": "mocha 'test/bin/**/*.js' 'test/lib/**/*.js' --recursive",
"test": "npm run tests-only",
"posttest": "npx npm@'>=10.2' audit --production",
"update-contributors": "all-contributors generate",
"commit": "git-cz",
"validate": "npm-run-all --parallel lint cover --sequential check-coverage",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"prebuild": "rimraf dist",
"build": "babel src -d dist",
"prepublish": "not-in-publish || npm run build"
},
"bin": {
"eslint-find-rules": "dist/bin/find.js",
"eslint-diff-rules": "dist/bin/diff.js"
},
"keywords": [],
"author": "Michał Gołębiowski <m.goleb@gmail.com>",
"contributors": [
"Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"Sarbbottam Bandyopadhyay <sarbbottam@gmail.com>",
"Andreas Windt <email@andreaswindt.com>"
],
"license": "MIT",
"dependencies": {
"cliui": "^7.0.4",
"eslint-rule-documentation": "^1.0.23",
"glob": "^7.2.3",
"window-size": "^0.3.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"all-contributors-cli": "^4.11.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^2.3.1",
"commitizen": "^2.10.1",
"create-require": "^1.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^8.57.1 || ^9.18.0",
"eslint-plugin-json": "^4.0.1",
"ghooks": "^2.0.4",
"globals": "^15.14.0",
"in-publish": "^2.0.1",
"lodash.merge": "^4.6.2",
"mocha": "^3.5.3",
"npm-run-all": "^4.1.5",
"nyc": "^11.9.0",
"opt-cli": "^1.6.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.7.1",
"semver": "^6.3.1",
"sinon": "^2.4.1",
"validate-commit-msg": "^2.14.0"
},
"peerDependencies": {
"eslint": "^8.57.1 || ^9.18.0"
},
"nyc": {
"exclude": [
"test/**/*"
]
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "opt --in pre-commit --exec \"npm run validate\""
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"improvement",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"breaking",
"revert",
"deps",
"meta"
]
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "/~https://github.com/sarbbottam/eslint-find-rules.git"
},
"bugs": {
"url": "/~https://github.com/sarbbottam/eslint-find-rules/issues"
},
"homepage": "/~https://github.com/sarbbottam/eslint-find-rules#readme",
"engines": {
"node": "^18.20 || ^20.18 || ^22.13 || >= 23.6"
}
}