UNPKG

2.31 kBJSONView Raw
1{
2 "name": "@sentry/core",
3 "version": "6.7.0",
4 "description": "Base implementation for all Sentry JavaScript SDKs",
5 "repository": "git://github.com/getsentry/sentry-javascript.git",
6 "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/core",
7 "author": "Sentry",
8 "license": "BSD-3-Clause",
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/hub": "6.7.0",
20 "@sentry/minimal": "6.7.0",
21 "@sentry/types": "6.7.0",
22 "@sentry/utils": "6.7.0",
23 "tslib": "^1.9.3"
24 },
25 "devDependencies": {
26 "@sentry-internal/eslint-config-sdk": "6.7.0",
27 "jest": "^24.7.1",
28 "npm-run-all": "^4.1.2",
29 "prettier": "1.19.0",
30 "rimraf": "^2.6.3",
31 "typescript": "3.7.5"
32 },
33 "scripts": {
34 "build": "run-p build:es5 build:esm",
35 "build:es5": "tsc -p tsconfig.build.json",
36 "build:esm": "tsc -p tsconfig.esm.json",
37 "build:watch": "run-p build:watch:es5 build:watch:esm",
38 "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
39 "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",
40 "clean": "rimraf dist coverage",
41 "link:yarn": "yarn link",
42 "lint": "run-s lint:prettier lint:eslint",
43 "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
44 "lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
45 "fix": "run-s fix:eslint fix:prettier",
46 "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
47 "fix:eslint": "eslint . --format stylish --fix",
48 "test": "jest",
49 "test:watch": "jest --watch",
50 "pack": "npm pack",
51 "version": "node ../../scripts/versionbump.js src/version.ts",
52 "circularDepCheck": "madge --circular src/index.ts"
53 },
54 "volta": {
55 "extends": "../../package.json"
56 },
57 "jest": {
58 "collectCoverage": true,
59 "transform": {
60 "^.+\\.ts$": "ts-jest"
61 },
62 "moduleFileExtensions": [
63 "js",
64 "ts"
65 ],
66 "testEnvironment": "node",
67 "testMatch": [
68 "**/*.test.ts"
69 ],
70 "globals": {
71 "ts-jest": {
72 "tsConfig": "./tsconfig.json",
73 "diagnostics": false
74 }
75 }
76 },
77 "sideEffects": false
78}