{ "name": "@sentry/core", "version": "5.27.2", "description": "Base implementation for all Sentry JavaScript SDKs", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/core", "author": "Sentry", "license": "BSD-3-Clause", "engines": { "node": ">=6" }, "main": "dist/index.js", "module": "esm/index.js", "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, "dependencies": { "@sentry/hub": "5.27.2", "@sentry/minimal": "5.27.2", "@sentry/types": "5.27.2", "@sentry/utils": "5.27.2", "tslib": "^1.9.3" }, "devDependencies": { "@sentry-internal/eslint-config-sdk": "5.27.2", "eslint": "7.6.0", "jest": "^24.7.1", "npm-run-all": "^4.1.2", "prettier": "1.19.0", "rimraf": "^2.6.3", "typescript": "3.7.5" }, "scripts": { "build": "run-p build:es5 build:esm", "build:es5": "tsc -p tsconfig.build.json", "build:esm": "tsc -p tsconfig.esm.json", "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", "clean": "rimraf dist coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", "lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish", "fix": "run-s fix:eslint fix:prettier", "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"", "fix:eslint": "eslint . --format stylish --fix", "test": "jest", "test:watch": "jest --watch", "pack": "npm pack" }, "volta": { "extends": "../../package.json" }, "jest": { "collectCoverage": true, "transform": { "^.+\\.ts$": "ts-jest" }, "moduleFileExtensions": [ "js", "ts" ], "testEnvironment": "node", "testMatch": [ "**/*.test.ts" ], "globals": { "ts-jest": { "tsConfig": "./tsconfig.json", "diagnostics": false } } }, "sideEffects": false }