-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "nest-bugsnag",
"version": "0.0.8",
"description": "A Nest module wrapper for bugsnag",
"keywords": [
"nestjs",
"bugsnag",
"logger"
],
"type": "git",
"url": "https://github.com/vita-mojo/nest-bugsnag",
"homepage": "https://github.com/vita-mojo/nest-bugsnag",
"bugs": {
"url": "https://github.com/vita-mojo/nest-bugsnag/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Vitamojo Software",
"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"
},
"dependencies": {
"@bugsnag/js": "5.2.0",
"@nestjs/common": "6.5.3",
"@nestjs/core": "6.5.3",
"@nestjs/platform-express": "6.5.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@nestjs/testing": "6.5.3",
"@types/jest": "^24.0.11",
"@types/supertest": "^2.0.7",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "3.4.5"
},
"peerDependencies": {
"@bugsnag/js": "5.2.0",
"@nestjs/common": "6.5.3",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.1"
}
}