UNPKG

2.81 kBJSONView Raw
1{
2 "name": "@sentry/node",
3 "version": "6.12.0",
4 "description": "Official Sentry SDK for Node.js",
5 "repository": "git://github.com/getsentry/sentry-javascript.git",
6 "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/node",
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/core": "6.12.0",
20 "@sentry/hub": "6.12.0",
21 "@sentry/tracing": "6.12.0",
22 "@sentry/types": "6.12.0",
23 "@sentry/utils": "6.12.0",
24 "cookie": "^0.4.1",
25 "https-proxy-agent": "^5.0.0",
26 "lru_map": "^0.3.3",
27 "tslib": "^1.9.3"
28 },
29 "devDependencies": {
30 "@sentry-internal/eslint-config-sdk": "6.12.0",
31 "@types/cookie": "0.3.2",
32 "@types/express": "^4.17.2",
33 "@types/lru-cache": "^5.1.0",
34 "@types/node": "~10.17.0",
35 "express": "^4.17.1",
36 "jest": "^24.7.1",
37 "nock": "^13.0.5",
38 "npm-run-all": "^4.1.2",
39 "prettier": "1.19.0",
40 "rimraf": "^2.6.3",
41 "typescript": "3.7.5"
42 },
43 "scripts": {
44 "build": "run-p build:es5 build:esm",
45 "build:es5": "tsc -p tsconfig.build.json",
46 "build:esm": "tsc -p tsconfig.esm.json",
47 "build:watch": "run-p build:watch:es5 build:watch:esm",
48 "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
49 "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",
50 "clean": "rimraf dist esm coverage",
51 "link:yarn": "yarn link",
52 "lint": "run-s lint:prettier lint:eslint",
53 "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
54 "lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
55 "fix": "run-s fix:eslint fix:prettier",
56 "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
57 "fix:eslint": "eslint . --format stylish --fix",
58 "test": "run-s test:jest test:express test:webpack test:release-health",
59 "test:jest": "jest",
60 "test:watch": "jest --watch",
61 "test:express": "node test/manual/express-scope-separation/start.js",
62 "test:webpack": "cd test/manual/webpack-domain/ && yarn && node npm-build.js",
63 "test:release-health": "node test/manual/release-health/runner.js",
64 "pack": "npm pack",
65 "circularDepCheck": "madge --circular src/index.ts"
66 },
67 "volta": {
68 "extends": "../../package.json"
69 },
70 "jest": {
71 "collectCoverage": true,
72 "transform": {
73 "^.+\\.ts$": "ts-jest"
74 },
75 "moduleFileExtensions": [
76 "js",
77 "ts"
78 ],
79 "testEnvironment": "node",
80 "testMatch": [
81 "**/*.test.ts"
82 ],
83 "globals": {
84 "ts-jest": {
85 "tsConfig": "./tsconfig.json",
86 "diagnostics": false
87 }
88 }
89 }
90}