-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.31 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
{
"name": "@twirelab/nestjs-auth0",
"version": "0.3.1",
"description": "",
"main": "lib/index.js",
"private": false,
"types": "lib/index.d.ts",
"author": {
"name": "Twirelab",
"email": "contact@twirelab.com"
},
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"build": "tsc -p .",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Twirelab/nestjs-auth0.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"lib"
],
"keywords": [
"nestjs",
"auth0",
"authentication",
"management",
"nodejs",
"express",
"app",
"wrapper",
"client"
],
"bugs": {
"url": "https://github.com/Twirelab/nestjs-auth0/issues"
},
"homepage": "https://github.com/Twirelab/nestjs-auth0#readme",
"dependencies": {
"auth0": "^4.5.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@nestjs/common": "^10.4.1",
"@nestjs/core": "^10.3.8",
"@nestjs/testing": "^10.3.8",
"@types/auth0": "^3.3.10",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0"
}
}