forked from andrucz/nestjs-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"contributors": [
{
"name": "Dexter Hardy",
"email": "[email protected]",
"url": "https://www.ntegral.com"
}
],
"name": "@maliffic/nestjs-sentry",
"version": "1.0.7",
"description": "Provides an injectable sentry.io client to provide enterprise logging nestjs modules",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Maliffic/nestjs-sentry"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"format": "prettier --write \"lib/**/*.ts\"",
"publish:npm": "npm publish --access public",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"keywords": [
"nestjs",
"sentry.io"
],
"author": "Dexter Hardy",
"license": "ISC",
"peerDependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"devDependencies": {
"@nestjs/common": "^7.4.2",
"@nestjs/core": "^7.4.2",
"@nestjs/testing": "^7.4.2",
"@types/jest": "^25.1.4",
"@types/node": "^13.7.5",
"@types/supertest": "^2.0.8",
"codecov": "^3.6.5",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@sentry/node": "^6.0.3"
},
"publishConfig": {
"access": "public"
}
}