UNPKG

@sentry/wizard

Version:

Sentry wizard helping you to configure your project

119 lines (118 loc) 3.49 kB
{ "name": "@sentry/wizard", "version": "3.3.2", "homepage": "https://github.com/getsentry/sentry-wizard", "repository": "https://github.com/getsentry/sentry-wizard", "description": "Sentry wizard helping you to configure your project", "keywords": [ "sentry", "wizard", "sdk", "cli", "project", "setup", "install", "configure" ], "bin": { "sentry-wizard": "dist/bin.js" }, "main": "dist/index.js", "typings": "dist/index.d.ts", "typescript": { "definition": "dist/index.d.ts" }, "dependencies": { "@clack/core": "0.3.2", "@clack/prompts": "0.6.3", "@sentry/cli": "^1.72.0", "@sentry/node": "^7.56.0", "axios": "1.3.5", "chalk": "^2.4.1", "glob": "^7.1.3", "inquirer": "^6.2.0", "lodash": "^4.17.15", "magicast": "^0.2.9", "opn": "^5.4.0", "r2": "^2.0.1", "read-env": "^1.3.0", "semver": "^7.3.5", "xcode": "3.0.1", "yargs": "^16.2.0" }, "devDependencies": { "@sentry-internal/eslint-config-sdk": "^7.48.0", "@types/glob": "^7.2.0", "@types/inquirer": "^0.0.43", "@types/jest": "^29.5.0", "@types/lodash": "^4.14.144", "@types/node": "^10.11.0", "@types/rimraf": "^3.0.2", "@types/semver": "^7.3.7", "@typescript-eslint/eslint-plugin": "^5.13.0", "@typescript-eslint/parser": "^5.13.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-jest": "^25.3.0", "jest": "^29.5.0", "prettier": "^2.8.7", "rimraf": "^3.0.2", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typescript": "^5.0.4" }, "resolutions": { "**/xmldom": "^0.6.0" }, "engines": { "node": ">=6.9.5", "npm": ">=3.10.7", "yarn": ">=1.0.2" }, "scripts": { "clean": "rm -rf ./dist", "prebuild": "yarn clean", "build:watch": "yarn tsc -w", "build": "yarn tsc", "postbuild": "chmod +x ./dist/bin.js && cp -r scripts/** dist", "lint": "yarn lint:prettier && yarn lint:eslint", "lint:prettier": "prettier --check lib/**/*.ts", "lint:eslint": "eslint . --cache --format stylish", "fix": "yarn fix:eslint && yarn fix:prettier", "fix:prettier": "prettier --write lib/**/*.ts", "fix:eslint": "eslint . --format stylish --fix", "test": "yarn build && jest", "try": "ts-node bin.ts", "try:uninstall": "ts-node bin.ts --uninstall", "test:watch": "jest --watch --notify" }, "jest": { "collectCoverage": true, "coveragePathIgnorePatterns": [ "dist" ], "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json" ], "modulePathIgnorePatterns": [ "<rootDir>/dist/__mocks__" ], "testPathIgnorePatterns": [ "/dist/", "/node_modules/", "\\.d\\.(jsx?|tsx?)$", "\\.no-jest\\.(jsx?|tsx?)$" ], "testEnvironment": "node" }, "author": "Sentry", "license": "MIT" }