This repository was archived by the owner on Dec 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.82 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.82 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
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
{
"name": "@sentry/migr8",
"version": "0.2.4",
"homepage": "https://github.com/getsentry/sentry-migr8",
"repository": "https://github.com/getsentry/sentry-migr8",
"description": "Run migrations for the Sentry JavaScript SDKs.",
"keywords": [
"sentry",
"sdk",
"upgrade",
"migrate",
"codemod"
],
"author": "Sentry",
"license": "MIT",
"main": "src/index.js",
"bin": {
"sentry-migr8": "./src/index.js"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "pnpm lint:prettier && pnpm lint:eslint && pnpm lint:tsc",
"lint:eslint": "eslint . --format stylish",
"lint:tsc": "tsc",
"lint:prettier": "prettier --check \"{src,test-helpers,test-fixtures}/**/*.js\"",
"fix": "pnpm fix:eslint && pnpm fix:prettier",
"fix:eslint": "eslint . --format stylish --fix",
"fix:prettier": "prettier --write \"{src,test-helpers,test-fixtures}/**/*.js\"",
"dev": "node ./src/index.js",
"test": "vitest run",
"test:e2e": "vitest run ./src/index.test.js",
"changelog": "pnpx tsx ./scripts/get-commit-list.ts"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@sentry/node": "^7.114.0",
"chalk": "^5.3.0",
"globby": "^14.0.1",
"jscodeshift": "^0.15.2",
"jscodeshift-adapters": "1.0.2",
"node-html-parser": "^6.1.13",
"semver": "^7.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@sentry-internal/eslint-config-sdk": "^7.64.0",
"@types/jscodeshift": "^0.11.11",
"@types/node": "^18.17.6",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.32",
"clet": "^1.0.1",
"eslint": "^8.47.0",
"prettier": "^3.0.2",
"typescript": "^4.9.5",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"volta": {
"node": "18.17.1",
"pnpm": "8.15.7"
},
"files": [
"src"
]
}