@tomei/sso 0.11.7 → 0.13.1
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/dist/src/components/login-user/login-user.d.ts +2 -0
- package/dist/src/components/login-user/login-user.js +25 -8
- package/dist/src/components/login-user/login-user.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +79 -79
- package/src/components/login-user/login-user.ts +557 -538
package/package.json
CHANGED
@@ -1,79 +1,79 @@
|
|
1
|
-
{
|
2
|
-
"name": "@tomei/sso",
|
3
|
-
"version": "0.
|
4
|
-
"description": "Tomei SSO Package",
|
5
|
-
"main": "dist/index.js",
|
6
|
-
"scripts": {
|
7
|
-
"start:dev": "tsc -w",
|
8
|
-
"build": "tsc",
|
9
|
-
"prepare": "husky install",
|
10
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
11
|
-
"lint": "npx eslint . --fix",
|
12
|
-
"test": "jest --forceExit --detectOpenHandles"
|
13
|
-
},
|
14
|
-
"repository": {
|
15
|
-
"type": "git",
|
16
|
-
"url": "git+ssh://git@gitlab.com/tomei-package/sso.git"
|
17
|
-
},
|
18
|
-
"keywords": [
|
19
|
-
"tomei",
|
20
|
-
"sso"
|
21
|
-
],
|
22
|
-
"author": "Tomei",
|
23
|
-
"license": "ISC",
|
24
|
-
"bugs": {
|
25
|
-
"url": "https://gitlab.com/tomei-package/sso/issues"
|
26
|
-
},
|
27
|
-
"homepage": "https://gitlab.com/tomei-package/sso#readme",
|
28
|
-
"devDependencies": {
|
29
|
-
"@commitlint/cli": "^17.6.3",
|
30
|
-
"@commitlint/config-conventional": "^17.6.3",
|
31
|
-
"@tsconfig/node18": "^2.0.1",
|
32
|
-
"@types/bcrypt": "^5.0.0",
|
33
|
-
"@types/jest": "^29.5.2",
|
34
|
-
"@types/node": "^18.17.5",
|
35
|
-
"@types/redis": "^4.0.11",
|
36
|
-
"@types/validator": "^13.11.1",
|
37
|
-
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
38
|
-
"dotenv": "^16.1.4",
|
39
|
-
"eslint": "^8.40.0",
|
40
|
-
"eslint-config-prettier": "^8.5.0",
|
41
|
-
"eslint-plugin-prettier": "^4.2.1",
|
42
|
-
"husky": "^8.0.3",
|
43
|
-
"jest": "^29.5.0",
|
44
|
-
"jest-mock-extended": "^3.0.4",
|
45
|
-
"lint-staged": "^13.2.2",
|
46
|
-
"prettier": "^2.7.1",
|
47
|
-
"prisma": "^4.14.0",
|
48
|
-
"redis-mock": "^0.56.3",
|
49
|
-
"ts-jest": "^29.1.0",
|
50
|
-
"ts-node": "^10.9.1",
|
51
|
-
"tsc-watch": "^5.0.3",
|
52
|
-
"tsconfig-paths": "^4.0.0",
|
53
|
-
"tslint": "^6.1.3",
|
54
|
-
"typescript": "^4.7.4"
|
55
|
-
},
|
56
|
-
"publishConfig": {
|
57
|
-
"access": "public"
|
58
|
-
},
|
59
|
-
"peerDependencies": {
|
60
|
-
"@tomei/config": "^0.3.
|
61
|
-
"@tomei/general": "^0.
|
62
|
-
"@tomei/mailer": "^0.5.
|
63
|
-
"@types/jest": "^29.5.2",
|
64
|
-
"argon2": "^0.30.3",
|
65
|
-
"cls-hooked": "^4.2.2",
|
66
|
-
"cuid": "^3.0.0",
|
67
|
-
"nodemailer": "^6.9.3",
|
68
|
-
"redis": "^4.6.7",
|
69
|
-
"reflect-metadata": "^0.1.13",
|
70
|
-
"sequelize": "^6.32.1",
|
71
|
-
"sequelize-typescript": "^2.1.5"
|
72
|
-
},
|
73
|
-
"lint-staged": {
|
74
|
-
"*/**/*.{js,ts,tsx}": [
|
75
|
-
"prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
76
|
-
"eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
|
77
|
-
]
|
78
|
-
}
|
79
|
-
}
|
1
|
+
{
|
2
|
+
"name": "@tomei/sso",
|
3
|
+
"version": "0.13.1",
|
4
|
+
"description": "Tomei SSO Package",
|
5
|
+
"main": "dist/index.js",
|
6
|
+
"scripts": {
|
7
|
+
"start:dev": "tsc -w",
|
8
|
+
"build": "tsc",
|
9
|
+
"prepare": "husky install",
|
10
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
11
|
+
"lint": "npx eslint . --fix",
|
12
|
+
"test": "jest --forceExit --detectOpenHandles"
|
13
|
+
},
|
14
|
+
"repository": {
|
15
|
+
"type": "git",
|
16
|
+
"url": "git+ssh://git@gitlab.com/tomei-package/sso.git"
|
17
|
+
},
|
18
|
+
"keywords": [
|
19
|
+
"tomei",
|
20
|
+
"sso"
|
21
|
+
],
|
22
|
+
"author": "Tomei",
|
23
|
+
"license": "ISC",
|
24
|
+
"bugs": {
|
25
|
+
"url": "https://gitlab.com/tomei-package/sso/issues"
|
26
|
+
},
|
27
|
+
"homepage": "https://gitlab.com/tomei-package/sso#readme",
|
28
|
+
"devDependencies": {
|
29
|
+
"@commitlint/cli": "^17.6.3",
|
30
|
+
"@commitlint/config-conventional": "^17.6.3",
|
31
|
+
"@tsconfig/node18": "^2.0.1",
|
32
|
+
"@types/bcrypt": "^5.0.0",
|
33
|
+
"@types/jest": "^29.5.2",
|
34
|
+
"@types/node": "^18.17.5",
|
35
|
+
"@types/redis": "^4.0.11",
|
36
|
+
"@types/validator": "^13.11.1",
|
37
|
+
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
38
|
+
"dotenv": "^16.1.4",
|
39
|
+
"eslint": "^8.40.0",
|
40
|
+
"eslint-config-prettier": "^8.5.0",
|
41
|
+
"eslint-plugin-prettier": "^4.2.1",
|
42
|
+
"husky": "^8.0.3",
|
43
|
+
"jest": "^29.5.0",
|
44
|
+
"jest-mock-extended": "^3.0.4",
|
45
|
+
"lint-staged": "^13.2.2",
|
46
|
+
"prettier": "^2.7.1",
|
47
|
+
"prisma": "^4.14.0",
|
48
|
+
"redis-mock": "^0.56.3",
|
49
|
+
"ts-jest": "^29.1.0",
|
50
|
+
"ts-node": "^10.9.1",
|
51
|
+
"tsc-watch": "^5.0.3",
|
52
|
+
"tsconfig-paths": "^4.0.0",
|
53
|
+
"tslint": "^6.1.3",
|
54
|
+
"typescript": "^4.7.4"
|
55
|
+
},
|
56
|
+
"publishConfig": {
|
57
|
+
"access": "public"
|
58
|
+
},
|
59
|
+
"peerDependencies": {
|
60
|
+
"@tomei/config": "^0.3.6",
|
61
|
+
"@tomei/general": "^0.6.0",
|
62
|
+
"@tomei/mailer": "^0.5.7",
|
63
|
+
"@types/jest": "^29.5.2",
|
64
|
+
"argon2": "^0.30.3",
|
65
|
+
"cls-hooked": "^4.2.2",
|
66
|
+
"cuid": "^3.0.0",
|
67
|
+
"nodemailer": "^6.9.3",
|
68
|
+
"redis": "^4.6.7",
|
69
|
+
"reflect-metadata": "^0.1.13",
|
70
|
+
"sequelize": "^6.32.1",
|
71
|
+
"sequelize-typescript": "^2.1.5"
|
72
|
+
},
|
73
|
+
"lint-staged": {
|
74
|
+
"*/**/*.{js,ts,tsx}": [
|
75
|
+
"prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
76
|
+
"eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
|
77
|
+
]
|
78
|
+
}
|
79
|
+
}
|