-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
79 lines (79 loc) · 2 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
78
79
{
"name": "nestjs-flub",
"version": "0.1.2",
"description": "Pretty Error Stack Viewer for NestJS Framework",
"main": "dist/index.js",
"scripts": {
"release": "standard-version",
"clean": "rm -rf dist",
"build": "yarn run clean && tsc -p . && mkdir dist/themes && cp src/themes/* dist/themes/",
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjsx/nestjs-flub.git"
},
"keywords": [
"errorhandler",
"error-reporting",
"whoops",
"nestjs",
"middlewares"
],
"author": "Shady Khalifa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nestjsx/nestjs-flub/issues"
},
"homepage": "https://github.com/nestjsx/nestjs-flub#readme",
"devDependencies": {
"@nestjs/common": "^6.5.3",
"@nestjs/core": "^6.5.3",
"@nestjs/platform-express": "^6.5.3",
"@nestjs/testing": "^6.5.3",
"@types/jest": "^23.3.9",
"@types/node": "^12.6.8",
"@types/superagent": "^4.1.3",
"@types/supertest": "^2.0.8",
"coveralls": "^3.0.5",
"jest": "^23.6.0",
"prettier": "^1.18.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"supertest": "^4.0.2",
"ts-jest": "^23.10.4",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"mustache": "^3.0.1",
"stack-trace": "^0.0.10"
},
"peerDependencies": {
"@nestjs/common": "^6.5.3",
"@nestjs/core": "^6.5.3"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.spec.json"
}
},
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage"
}
}