@bernierllc/auth-suite 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bernierllc/auth-suite",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Complete authentication suite with multi-provider support, session management, role-based access control, and MFA",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,16 +9,6 @@
|
|
|
9
9
|
"README.md",
|
|
10
10
|
"LICENSE"
|
|
11
11
|
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsc",
|
|
14
|
-
"dev": "tsc --watch",
|
|
15
|
-
"test": "jest",
|
|
16
|
-
"test:watch": "jest --watch",
|
|
17
|
-
"test:coverage": "jest --coverage",
|
|
18
|
-
"test:run": "jest --passWithNoTests",
|
|
19
|
-
"lint": "eslint src/**/*.ts",
|
|
20
|
-
"clean": "rimraf dist"
|
|
21
|
-
},
|
|
22
12
|
"keywords": [
|
|
23
13
|
"authentication",
|
|
24
14
|
"authorization",
|
|
@@ -40,12 +30,12 @@
|
|
|
40
30
|
"directory": "packages/suite/auth-suite"
|
|
41
31
|
},
|
|
42
32
|
"dependencies": {
|
|
43
|
-
"@bernierllc/auth-service": "1.0.7",
|
|
44
|
-
"@bernierllc/crypto-utils": "1.0.6",
|
|
45
|
-
"@bernierllc/email-sender": "5.0.0",
|
|
46
|
-
"@bernierllc/logger": "1.3.0",
|
|
47
33
|
"bcrypt": "^5.1.0",
|
|
48
|
-
"uuid": "^9.0.0"
|
|
34
|
+
"uuid": "^9.0.0",
|
|
35
|
+
"@bernierllc/auth-service": "1.0.9",
|
|
36
|
+
"@bernierllc/crypto-utils": "1.0.8",
|
|
37
|
+
"@bernierllc/email-sender": "5.2.0",
|
|
38
|
+
"@bernierllc/logger": "1.3.2"
|
|
49
39
|
},
|
|
50
40
|
"devDependencies": {
|
|
51
41
|
"@types/bcrypt": "^5.0.0",
|
|
@@ -65,5 +55,14 @@
|
|
|
65
55
|
"access": "public",
|
|
66
56
|
"registry": "https://registry.npmjs.org/"
|
|
67
57
|
},
|
|
68
|
-
"
|
|
69
|
-
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "tsc",
|
|
60
|
+
"dev": "tsc --watch",
|
|
61
|
+
"test": "jest",
|
|
62
|
+
"test:watch": "jest --watch",
|
|
63
|
+
"test:coverage": "jest --coverage",
|
|
64
|
+
"test:run": "jest --passWithNoTests",
|
|
65
|
+
"lint": "eslint src/**/*.ts",
|
|
66
|
+
"clean": "rimraf dist"
|
|
67
|
+
}
|
|
68
|
+
}
|