UNPKG

2.65 kBJSONView Raw
1{
2 "name": "@sentry/node",
3 "version": "5.15.3",
4 "description": "Offical 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/apm": "5.15.3",
20 "@sentry/core": "5.15.3",
21 "@sentry/hub": "5.15.3",
22 "@sentry/types": "5.15.3",
23 "@sentry/utils": "5.15.3",
24 "cookie": "^0.3.1",
25 "https-proxy-agent": "^4.0.0",
26 "lru_map": "^0.3.3",
27 "tslib": "^1.9.3"
28 },
29 "devDependencies": {
30 "@types/cookie": "0.3.2",
31 "@types/express": "^4.17.2",
32 "@types/lru-cache": "^5.1.0",
33 "@types/node": "^11.13.7",
34 "express": "^4.17.1",
35 "jest": "^24.7.1",
36 "npm-run-all": "^4.1.2",
37 "prettier": "^1.17.0",
38 "prettier-check": "^2.0.0",
39 "rimraf": "^2.6.3",
40 "tslint": "^5.16.0",
41 "typescript": "^3.4.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 coverage",
51 "link:yarn": "yarn link",
52 "lint": "run-s lint:prettier lint:tslint",
53 "lint:prettier": "prettier-check \"{src,test}/**/*.ts\"",
54 "lint:tslint": "tslint -t stylish -p .",
55 "lint:tslint:json": "tslint --format json -p . | tee lint-results.json",
56 "fix": "run-s fix:tslint fix:prettier",
57 "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
58 "fix:tslint": "tslint --fix -t stylish -p .",
59 "test": "run-s test:jest test:express test:webpack",
60 "test:jest": "jest",
61 "test:watch": "jest --watch",
62 "test:express": "node test/manual/express-scope-separation/start.js",
63 "test:webpack": "cd test/manual/webpack-domain/ && yarn && node npm-build.js",
64 "version": "node ../../scripts/versionbump.js src/version.ts"
65 },
66 "jest": {
67 "collectCoverage": true,
68 "transform": {
69 "^.+\\.ts$": "ts-jest"
70 },
71 "moduleFileExtensions": [
72 "js",
73 "ts"
74 ],
75 "testEnvironment": "node",
76 "testMatch": [
77 "**/*.test.ts"
78 ],
79 "globals": {
80 "ts-jest": {
81 "tsConfig": "./tsconfig.json",
82 "diagnostics": false
83 }
84 }
85 }
86}