-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "@algoan/nestjs-custom-decorators",
"version": "1.3.13",
"description": "custom nest decorators for nestjs-custom-decorators",
"keywords": [
"nest",
"decorator",
"jwt"
],
"author": "meriamBenSassi <[email protected]>",
"homepage": "https://github.com/algoan/nestjs-components/tree/master/packages/nestjs-custom-decorators#readme",
"license": "ISC",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist/src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/nestjs-components.git",
"directory": "packages/custom-decorators"
},
"scripts": {
"build": "tsc -p .",
"test": "jest",
"test:cov": "jest --coverage"
},
"bugs": {
"url": "https://github.com/algoan/nestjs-components/issues"
},
"dependencies": {
"jwt-decode": "^4.0.0"
},
"peerDependencies": {
"@nestjs/common": ">=8",
"@nestjs/core": ">=8",
"@nestjs/platform-express": ">=8"
}
}