-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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
37
38
39
40
41
42
43
{
"name": "datadog-codemods",
"version": "0.1.0",
"private": true,
"description": "JSSG codemods for Datadog SDK upgrades",
"keywords": [
"ast-grep",
"codemod",
"datadog",
"dd-trace",
"jssg"
],
"license": "MIT",
"type": "module",
"scripts": {
"test": "pnpm -r --filter \"@codemod/dd-trace-js-v6-*\" test",
"check-types": "pnpm -r --filter \"@codemod/dd-trace-js-v6-*\" check-types",
"ci": "pnpm run test && pnpm run check-types",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint --type-aware --type-check --deny-warnings .",
"lint:fix": "oxlint --type-aware --type-check --fix .",
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version && bash scripts/sync-codemod-versions.sh",
"docs:links": "git ls-files '*.md' | xargs pnpm exec markdown-link-check -q -c .markdown-link-check.json"
},
"dependencies": {
"@jssg/utils": "^0.0.7"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "latest",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"markdown-link-check": "^3.14.2",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "6.0.3"
},
"packageManager": "pnpm@9.14.2"
}