-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "semi-codemod",
"version": "0.8.0",
"description": "",
"bin": "./bin/semi-codemod.js",
"scripts": {
"release": "release-it",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"files": [
"transforms/*.js",
"bin/*.js"
],
"dependencies": {
"@swc/core": "^1.3.82",
"chalk": "4",
"execa": "4.0.3",
"globby": "11.0.1",
"inquirer": "7.3.3",
"jscodeshift": "^0.15.0",
"meow": "7.0.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^7.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"release-it": "^16.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}