|
| 1 | +{ |
| 2 | + "name": "@sentry/vue", |
| 3 | + "version": "5.27.4", |
| 4 | + "description": "Offical Sentry SDK for Vue.js", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/react", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "MIT", |
| 9 | + "engines": { |
| 10 | + "node": ">=6" |
| 11 | + }, |
| 12 | + "main": "dist/index.js", |
| 13 | + "module": "esm/index.js", |
| 14 | + "types": "dist/index.d.ts", |
| 15 | + "publishConfig": { |
| 16 | + "access": "public" |
| 17 | + }, |
| 18 | + "dependencies": { |
| 19 | + "@sentry/browser": "5.27.4", |
| 20 | + "@sentry/core": "5.27.4", |
| 21 | + "@sentry/minimal": "5.27.4", |
| 22 | + "@sentry/types": "5.27.4", |
| 23 | + "@sentry/utils": "5.27.4", |
| 24 | + "tslib": "^1.9.3" |
| 25 | + }, |
| 26 | + "peerDependencies": { |
| 27 | + "vue": "2.x" |
| 28 | + }, |
| 29 | + "devDependencies": { |
| 30 | + "@sentry-internal/eslint-config-sdk": "5.27.4", |
| 31 | + "eslint": "7.6.0", |
| 32 | + "jest": "^24.7.1", |
| 33 | + "jsdom": "^16.2.2", |
| 34 | + "npm-run-all": "^4.1.2", |
| 35 | + "prettier": "1.19.0", |
| 36 | + "rimraf": "^2.6.3", |
| 37 | + "rollup": "^1.10.1", |
| 38 | + "rollup-plugin-commonjs": "^9.3.4", |
| 39 | + "rollup-plugin-license": "^0.8.1", |
| 40 | + "rollup-plugin-node-resolve": "^4.2.3", |
| 41 | + "rollup-plugin-terser": "^4.0.4", |
| 42 | + "rollup-plugin-typescript2": "^0.21.0", |
| 43 | + "typescript": "3.7.5", |
| 44 | + "vue": "^2.6", |
| 45 | + "vue-router": "^3.0.1" |
| 46 | + }, |
| 47 | + "scripts": { |
| 48 | + "build": "run-p build:es5 build:esm build:bundle", |
| 49 | + "build:bundle": "rollup --config", |
| 50 | + "build:bundle:watch": "rollup --config --watch", |
| 51 | + "build:es5": "tsc -p tsconfig.build.json", |
| 52 | + "build:esm": "tsc -p tsconfig.esm.json", |
| 53 | + "build:watch": "run-p build:watch:es5 build:watch:esm", |
| 54 | + "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", |
| 55 | + "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", |
| 56 | + "clean": "rimraf dist coverage build esm", |
| 57 | + "link:yarn": "yarn link", |
| 58 | + "lint": "run-s lint:prettier lint:eslint", |
| 59 | + "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", |
| 60 | + "lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish", |
| 61 | + "fix": "run-s fix:eslint fix:prettier", |
| 62 | + "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"", |
| 63 | + "fix:eslint": "eslint . --format stylish --fix", |
| 64 | + "test": "jest --passWithNoTests", |
| 65 | + "test:watch": "jest --watch", |
| 66 | + "pack": "npm pack" |
| 67 | + }, |
| 68 | + "volta": { |
| 69 | + "extends": "../../package.json" |
| 70 | + }, |
| 71 | + "jest": { |
| 72 | + "collectCoverage": true, |
| 73 | + "transform": { |
| 74 | + "^.+\\.ts$": "ts-jest" |
| 75 | + }, |
| 76 | + "moduleFileExtensions": [ |
| 77 | + "js", |
| 78 | + "ts" |
| 79 | + ], |
| 80 | + "testEnvironment": "jsdom", |
| 81 | + "testMatch": [ |
| 82 | + "**/*.test.ts" |
| 83 | + ], |
| 84 | + "globals": { |
| 85 | + "ts-jest": { |
| 86 | + "tsConfig": "./tsconfig.json", |
| 87 | + "diagnostics": false |
| 88 | + } |
| 89 | + } |
| 90 | + }, |
| 91 | + "sideEffects": [ |
| 92 | + "./src/index.ts" |
| 93 | + ] |
| 94 | +} |
0 commit comments