-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.63 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
{
"name": "@lingui/codemods",
"version": "1.2.0",
"description": "@lingui codemod scripts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lingui/codemods.git"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"bin": {
"lingui-codemod": "./dist/bin/lingui-codemod.js"
},
"scripts": {
"test": "jest",
"build": "tsc && chmod 755 ./dist/bin/lingui-codemod.js",
"jscodeshift": "jscodeshift",
"release": "semantic-release",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx}'",
"prettier:check": "prettier --check '**/*.{ts,tsx,js,jsx}'",
"prepare": "husky"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"chalk": "^2.4.2",
"execa": "^3.2.0",
"globby": "^10.0.1",
"inquirer": "^8.2.6",
"is-git-clean": "^1.1.0",
"jscodeshift": "^0.16.0",
"meow": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/inquirer": "^8.2.10",
"@types/is-git-clean": "^1.1.2",
"@types/jest": "^29.5.12",
"@types/jscodeshift": "^0.11.11",
"@types/node": "^20.14.5",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^2.8.8",
"semantic-release": "^17.2.1",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
},
"contributors": [
"Sergio Moreno <[email protected]>"
],
"keywords": [
"@lingui",
"lingui",
"jscodeshift",
"codemods"
]
}