-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 890 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 890 Bytes
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
{
"name": "eslint-transforms",
"version": "3.0.0",
"description": "Codemods for upgrading eslint rules",
"license": "MIT",
"author": "Vitor Balocco",
"repository": "eslint/eslint-transforms",
"engines": {
"node": ">=20"
},
"bin": {
"eslint-transforms": "./bin/eslint-transforms.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "mocha \"tests/**/*.test.js\""
},
"devDependencies": {
"@hypermod/utils": "^0.4.2",
"eslint": "^10.0.0",
"eslint-config-eslint": "^14.0.0",
"globals": "^17.0.0",
"mocha": "^11.0.0",
"prettier": "3.8.1",
"sinon": "^21.0.0"
},
"keywords": [
"javascript",
"eslint",
"jscodeshift"
],
"dependencies": {
"jscodeshift": "^0.16.0"
}
}