-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 1.96 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@akanass/nestjsx-crypto",
"version": "4.0.0",
"description": "NestJS crypto module provides some functions for security features like AES key, Key pair, RSA key, PKCS12, Certificate, PEM and more",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"pretest": "make clean && make pretest",
"test": "make test",
"packaging": "make packaging",
"prebuild": "make clean && make pretest && make test",
"build": "make tsc",
"postbuild": "make packaging"
},
"repository": {
"type": "git",
"url": "[email protected]:akanass/nestjsx-crypto.git"
},
"keywords": [
"Crypto",
"RSA",
"PEM",
"PrivateKey",
"PublicKey",
"Certificate",
"RandomString",
"AES",
"PKCS12",
"KeyPair",
"JWT",
"NestJS",
"Framework",
"NodeJS",
"Node",
"Streams",
"Async",
"Decorator",
"RxJS",
"Rx",
"ReactiveX",
"Observable",
"Observer",
"Module",
"ES2015",
"ES2016",
"ES2017",
"ES6",
"ES7",
"ES8",
"Typescript"
],
"author": "Nicolas Jessel <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/akanass/nestjsx-crypto/issues",
"homepage": "https://github.com/akanass/nestjsx-crypto#readme",
"dependencies": {
"@akanass/rx-crypto": "^2.3.0"
},
"devDependencies": {
"@nestjs/common": "^9.0.2",
"@nestjs/core": "^9.0.2",
"@nestjs/testing": "^9.0.2",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"fs-extra": "^10.1.0",
"jest": "^28.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@nestjs/common": "^9.0.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5"
},
"engines": {
"node": ">=7.0.0"
}
}