-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
39 lines (39 loc) · 929 Bytes
/
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
{
"name": "suppress-eslint-errors",
"version": "0.9.0",
"repository": {
"type": "git",
"url": "https://github.com/amanda-mitchell/suppress-eslint-errors"
},
"author": "Amanda Mitchell <she@mandymitchell.me>",
"license": "MIT",
"description": "A codemod that suppresses existing violations of eslint rules.",
"engines": {
"node": ">= 18"
},
"bin": {
"suppress-eslint-errors": "./bin/index.js"
},
"files": [
"bin/index.js",
"transforms/*.js"
],
"scripts": {
"suppress-eslint-errors": "node bin/index.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.0.0",
"cross-spawn": "^7.0.3",
"jscodeshift": "^0.13.0",
"please-upgrade-node": "^3.1.1"
},
"devDependencies": {
"@amanda-mitchell/node-project-scripts": "4.115.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^29.6.4",
"typescript": "^5.0.2"
}
}