-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.34 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.34 KB
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
{
"name": "@codemod-com/commons",
"version": "1.0.0",
"description": "Codemods, public or private, are preferred to reside in repositories owned by the main organization of their respective projects. This repository serves as a catch-all for some codemod sources that still have not found thier way to their ideal home or for Codemod-compatible forks of existing codemods for easier publishing. Please [chat with us](https://go.codemod.com/community) before making any major contribution.",
"main": "index.js",
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@codemod-com/tsconfig": "workspace:*",
"@codemod-com/utilities": "workspace:*",
"turbo": "^1.10.14",
"vitest": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11"
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"prepare": "husky && husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codemod-com/commons.git"
},
"keywords": ["codemod", "migration"],
"author": "Codemod, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/codemod-com/commons/issues"
},
"homepage": "https://github.com/codemod-com/commons#readme",
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true --diagnostic-level=error"
]
}
}