nestjs-cryptography 3.2.1 → 3.2.3
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/.codacy.yml +9 -0
- package/README.md +8 -8
- package/SECURITY.md +1 -1
- package/package.json +21 -21
package/.codacy.yml
ADDED
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
[](https://app.codacy.com/gh/
|
|
3
|
-
[](https://codecov.io/github/mjorgegulab/nestjs-cryptography)
|
|
2
|
+
[](https://app.codacy.com/gh/cipher-fox/nestjs-cryptography/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
|
3
|
+
[](https://github.com/mjorgegulab/nestjs-cryptography/actions/workflows/github-code-scanning/codeql)
|
|
4
|
+
[](https://nestjs-cryptography.cypher-fox.com)
|
|
5
5
|
|
|
6
6
|
# NestJS - Cryptography
|
|
7
7
|
|
|
@@ -141,7 +141,7 @@ These options are passed through to the underlying cryptographic operations of t
|
|
|
141
141
|
[2]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf#page=27
|
|
142
142
|
[3]: https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-57pt1r5.pdf#page=112
|
|
143
143
|
[4]: https://www.npmjs.com/package/nestjs-cryptography
|
|
144
|
-
[5]: https://nestjs-cryptography.
|
|
145
|
-
[6]: https://nestjs-cryptography.
|
|
146
|
-
[7]: https://nestjs-cryptography.
|
|
147
|
-
[8]: https://nestjs-cryptography.
|
|
144
|
+
[5]: https://nestjs-cryptography.cypher-fox.com/docs/api-reference/settings
|
|
145
|
+
[6]: https://nestjs-cryptography.cypher-fox.com
|
|
146
|
+
[7]: https://nestjs-cryptography.cypher-fox.com/docs/category/guides
|
|
147
|
+
[8]: https://nestjs-cryptography.cypher-fox.com/docs/api-reference/settings
|
package/SECURITY.md
CHANGED
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestjs-cryptography",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Marc Jorge Gonzalez",
|
|
6
|
-
"url": "https://github.com/
|
|
6
|
+
"url": "https://github.com/cipher-fox"
|
|
7
7
|
},
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"description": "Secure NestJS cryptography module 🔐",
|
|
10
|
-
"homepage": "https://nestjs-cryptography.
|
|
10
|
+
"homepage": "https://nestjs-cryptography.cypher-fox.com",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/
|
|
13
|
+
"url": "git+https://github.com/cipher-fox/nestjs-cryptography.git"
|
|
14
14
|
},
|
|
15
15
|
"bugs": {
|
|
16
|
-
"url": "https://github.com/
|
|
16
|
+
"url": "https://github.com/cipher-fox/nestjs-cryptography/issues"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "rimraf -rf dist && tsc -p tsconfig.json",
|
|
@@ -27,37 +27,37 @@
|
|
|
27
27
|
"all": "yarn format && yarn lint && yarn test && yarn prepack"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"argon2": "^0.
|
|
30
|
+
"argon2": "^0.43.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@eslint/eslintrc": "^3.3.1",
|
|
34
|
-
"@eslint/js": "^9.
|
|
35
|
-
"@nestjs/cli": "^11.0.
|
|
36
|
-
"@nestjs/common": "^11.
|
|
37
|
-
"@nestjs/core": "^11.
|
|
38
|
-
"@nestjs/platform-express": "^11.
|
|
34
|
+
"@eslint/js": "^9.32.0",
|
|
35
|
+
"@nestjs/cli": "^11.0.8",
|
|
36
|
+
"@nestjs/common": "^11.1.5",
|
|
37
|
+
"@nestjs/core": "^11.1.5",
|
|
38
|
+
"@nestjs/platform-express": "^11.1.5",
|
|
39
39
|
"@nestjs/schematics": "^11.0.5",
|
|
40
|
-
"@nestjs/testing": "^11.
|
|
41
|
-
"@types/express": "^5.0.
|
|
40
|
+
"@nestjs/testing": "^11.1.5",
|
|
41
|
+
"@types/express": "^5.0.3",
|
|
42
42
|
"@types/jest": "29.5.14",
|
|
43
|
-
"@types/node": "
|
|
43
|
+
"@types/node": "24.1.0",
|
|
44
44
|
"@types/supertest": "^6.0.3",
|
|
45
|
-
"eslint": "^9.
|
|
46
|
-
"eslint-config-prettier": "^10.1.
|
|
47
|
-
"eslint-plugin-prettier": "^5.
|
|
45
|
+
"eslint": "^9.32.0",
|
|
46
|
+
"eslint-config-prettier": "^10.1.8",
|
|
47
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
48
48
|
"jest": "29.7.0",
|
|
49
|
-
"prettier": "^3.
|
|
49
|
+
"prettier": "^3.6.2",
|
|
50
50
|
"reflect-metadata": "^0.2.2",
|
|
51
51
|
"rimraf": "^6.0.1",
|
|
52
52
|
"rxjs": "^7.8.2",
|
|
53
53
|
"source-map-support": "^0.5.21",
|
|
54
|
-
"supertest": "^7.1.
|
|
55
|
-
"ts-jest": "^29.
|
|
54
|
+
"supertest": "^7.1.4",
|
|
55
|
+
"ts-jest": "^29.4.0",
|
|
56
56
|
"ts-loader": "^9.5.2",
|
|
57
57
|
"ts-node": "^10.9.2",
|
|
58
58
|
"tsconfig-paths": "4.2.0",
|
|
59
59
|
"typescript": "^5.8.3",
|
|
60
|
-
"typescript-eslint": "^8.
|
|
60
|
+
"typescript-eslint": "^8.38.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0",
|