UNPKG

1.49 kBJSONView Raw
1{
2 "name": "@sentry/cli",
3 "version": "2.3.1",
4 "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
5 "repository": "git://github.com/getsentry/sentry-cli.git",
6 "homepage": "https://docs.sentry.io/hosted/learn/cli/",
7 "author": "Sentry",
8 "license": "BSD-3-Clause",
9 "engines": {
10 "node": ">= 12"
11 },
12 "main": "js/index.js",
13 "types": "js/index.d.ts",
14 "bin": {
15 "sentry-cli": "bin/sentry-cli"
16 },
17 "dependencies": {
18 "https-proxy-agent": "^5.0.0",
19 "node-fetch": "^2.6.7",
20 "npmlog": "^6.0.1",
21 "progress": "^2.0.3",
22 "proxy-from-env": "^1.1.0",
23 "which": "^2.0.2"
24 },
25 "devDependencies": {
26 "eslint": "^8.13.0",
27 "eslint-config-prettier": "^8.5.0",
28 "jest": "^27.5.1",
29 "npm-run-all": "^4.1.5",
30 "prettier": "^2.6.2"
31 },
32 "scripts": {
33 "install": "node ./scripts/install.js",
34 "fix": "npm-run-all fix:eslint fix:prettier",
35 "fix:eslint": "eslint --fix bin/* scripts/**/*.js js/**/*.js",
36 "fix:prettier": "prettier --write bin/* scripts/**/*.js js/**/*.js",
37 "test": "npm-run-all test:jest test:eslint test:prettier",
38 "test:jest": "jest",
39 "test:watch": "jest --watch --notify",
40 "test:eslint": "eslint bin/* scripts/**/*.js js/**/*.js",
41 "test:prettier": "prettier --check bin/* scripts/**/*.js js/**/*.js"
42 },
43 "jest": {
44 "collectCoverage": true,
45 "testEnvironment": "node",
46 "testPathIgnorePatterns": [
47 "<rootDir>/src"
48 ]
49 }
50}