-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.4 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
{
"name": "@payk/nestjs-private-api-guard",
"version": "1.1.0",
"description": "A NestJS API guard to block request to private apis",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura",
"prebuild": "rimraf dist",
"build": "tsc",
"publish-package": "npm run-script build && npm publish"
},
"keywords": [
"nest",
"nestjs",
"guard",
"private",
"api"
],
"author": "Dan Shapir",
"license": "ISC",
"dependencies": {
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/node": "^12.12.8",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"@nestjs/common": "^6.10.1",
"reflect-metadata": "^0.1.13",
"@nestjs/core": "^6.11.8",
"rxjs": "^6.5.4",
"ts-jest": "^24.2.0",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"@types/jest": "^24.0.18"
},
"peerDependencies": {
"@nestjs/common": "^6.10.1",
"reflect-metadata": "^0.1.13",
"@nestjs/core": "^6.11.8",
"rxjs": "^6.5.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}