package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@sentry/cli",
  3. "version": "1.77.3",
  4. "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
  5. "homepage": "https://docs.sentry.io/hosted/learn/cli/",
  6. "license": "BSD-3-Clause",
  7. "keywords": [
  8. "sentry",
  9. "sentry-cli",
  10. "cli"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/getsentry/sentry-cli"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/getsentry/sentry-cli/issues"
  18. },
  19. "engines": {
  20. "node": ">= 8"
  21. },
  22. "main": "js/index.js",
  23. "bin": {
  24. "sentry-cli": "bin/sentry-cli"
  25. },
  26. "scripts": {
  27. "install": "node ./scripts/install.js",
  28. "fix": "npm-run-all fix:eslint fix:prettier",
  29. "fix:eslint": "eslint --fix bin/* scripts/**/*.js js/**/*.js",
  30. "fix:prettier": "prettier --write bin/* scripts/**/*.js js/**/*.js",
  31. "test": "npm-run-all test:jest test:eslint test:prettier test:vercel-nft",
  32. "test:jest": "jest",
  33. "test:watch": "jest --watch --notify",
  34. "test:eslint": "eslint bin/* scripts/**/*.js js/**/*.js",
  35. "test:prettier": "prettier --check bin/* scripts/**/*.js js/**/*.js",
  36. "test:vercel-nft": "node scripts/test-vercel-nft.js"
  37. },
  38. "dependencies": {
  39. "https-proxy-agent": "^5.0.0",
  40. "mkdirp": "^0.5.5",
  41. "node-fetch": "^2.6.7",
  42. "progress": "^2.0.3",
  43. "proxy-from-env": "^1.1.0",
  44. "which": "^2.0.2"
  45. },
  46. "devDependencies": {
  47. "@vercel/nft": "^0.22.1",
  48. "eslint": "^6.8.0",
  49. "eslint-config-airbnb-base": "^14.1.0",
  50. "eslint-config-prettier": "^6.10.1",
  51. "eslint-plugin-import": "^2.20.2",
  52. "jest": "^25.3.0",
  53. "npm-run-all": "^4.1.5",
  54. "prettier": "^1.19.1"
  55. },
  56. "jest": {
  57. "collectCoverage": false,
  58. "testEnvironment": "node",
  59. "testPathIgnorePatterns": [
  60. "src/utils"
  61. ]
  62. },
  63. "volta": {
  64. "node": "10.24.1",
  65. "yarn": "1.22.19"
  66. },
  67. "publishConfig": {
  68. "tag": "v1"
  69. }
  70. }