forked from nkaurelien/nest-bugsnag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "@nkaurelien/nest-bugsnag",
"version": "6.1.0",
"description": "A Nest module wrapper for bugsnag",
"keywords": [
"nestjs",
"bugsnag",
"logger"
],
"engines": {
"node": "12.x"
},
"type": "git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Nkaurelien Kamitbrains",
"license": "MIT",
"scripts": {
"clean:build": "npm run clean && npm run build",
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"postbuild": "ts-node postbuild.ts",
"prepublishOnly": "npm run clean:build",
"test": "jest --config jest.config.json"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@bugsnag/js": "^7.5.1",
"@bugsnag/plugin-express": "^7.3.5",
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/platform-express": "^6.11.11",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.7.1",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@nestjs/testing": "6.5.3",
"@types/jest": "^24.9.1",
"@types/supertest": "^2.0.9",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"typescript": "3.4.5"
},
"peerDependencies": {
"@bugsnag/js": "^7.1.0",
"@bugsnag/plugin-express": "^7.1.0",
"@nestjs/common": "^6.11.11",
"@nestjs/platform-express": "^6.11.11",
"reflect-metadata": "0.1.13",
"rxjs": "^6.5.5"
}
}