forked from ntegral/nestjs-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.79 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
{
"contributors": [
{
"name": "Dexter Hardy",
"email": "[email protected]",
"url": "http://www.ntegral.com"
}
],
"name": "@ntegral/nestjs-sentry",
"version": "2.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/ntegral/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.6.12",
"@nestjs/core": "^7.6.12",
"@sentry/node": "^6.1.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/testing": "^7.6.12",
"@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",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.2"
},
"optionalDependencies": {
"@nestjs/graphql": "^7.9.9"
}
}