UNPKG

2.56 kBJSONView Raw
1{
2 "name": "@sentry/node",
3 "version": "5.12.2",
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.12.2",
20 "@sentry/core": "5.12.0",
21 "@sentry/hub": "5.12.0",
22 "@sentry/types": "5.12.0",
23 "@sentry/utils": "5.12.0",
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",
60 "test:jest": "jest",
61 "test:watch": "jest --watch",
62 "test:express": "node test/manual/express-scope-separation/start.js",
63 "version": "node ../../scripts/versionbump.js src/version.ts"
64 },
65 "jest": {
66 "collectCoverage": true,
67 "transform": {
68 "^.+\\.ts$": "ts-jest"
69 },
70 "moduleFileExtensions": [
71 "js",
72 "ts"
73 ],
74 "testEnvironment": "node",
75 "testMatch": [
76 "**/*.test.ts"
77 ],
78 "globals": {
79 "ts-jest": {
80 "tsConfig": "./tsconfig.json",
81 "diagnostics": false
82 }
83 }
84 }
85}