-
-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.12 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.12 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
69
70
71
72
73
{
"name": "@sentry/cli",
"version": "3.3.0",
"description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
"repository": "git://github.com/getsentry/sentry-cli.git",
"homepage": "https://docs.sentry.io/hosted/learn/cli/",
"author": "Sentry",
"license": "FSL-1.1-MIT",
"engines": {
"node": ">= 18"
},
"main": "js/index.js",
"types": "js/index.d.ts",
"bin": {
"sentry-cli": "bin/sentry-cli"
},
"dependencies": {
"progress": "^2.0.3",
"proxy-from-env": "^1.1.0",
"undici": "^6.22.0",
"which": "^2.0.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vercel/nft": "^1.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"ts-jest": "^27.1.5",
"typescript": "5.8.3"
},
"optionalDependencies": {
"@sentry/cli-darwin": "3.3.0",
"@sentry/cli-linux-arm": "3.3.0",
"@sentry/cli-linux-arm64": "3.3.0",
"@sentry/cli-linux-i686": "3.3.0",
"@sentry/cli-linux-x64": "3.3.0",
"@sentry/cli-win32-i686": "3.3.0",
"@sentry/cli-win32-x64": "3.3.0",
"@sentry/cli-win32-arm64": "3.3.0"
},
"scripts": {
"postinstall": "node ./scripts/install.js",
"build": "tsc",
"prepack": "npm run build",
"fix": "npm-run-all fix:eslint fix:prettier",
"fix:eslint": "eslint --fix bin/* scripts/**/*.js lib/**/*.js",
"fix:prettier": "prettier --write bin/* scripts/**/*.js lib/**/*.js",
"test": "npm-run-all test:jest test:eslint test:prettier test:vercel-nft",
"test:jest": "jest",
"test:watch": "jest --watch --notify",
"test:eslint": "eslint bin/* scripts/**/*.js lib/**/*.js",
"test:prettier": "prettier --check bin/* scripts/**/*.js lib/**/*.js",
"check:types": "tsc --noEmit",
"test:vercel-nft": "node scripts/test-vercel-nft.js"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src"
]
},
"volta": {
"node": "24.8.0",
"npm": "11.6.0"
},
"overrides": {
"browserslist": "<4.26.0 || >4.26.0"
}
}