-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.81 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
{
"name": "cryptaculous",
"description": "A utility with zero dependencies to encrypt and decrypt values by abstracting the native crypto package.",
"version": "0.0.11",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf -rf dist",
"build:ts": "tsc -p tsconfig.build.json",
"minify": "node minify.js",
"build:minify": "npm-run-all build:ts minify",
"build": "npm-run-all clean build:ts minify",
"test": "jest --config jest.config.json",
"lint": "tslint src/**/*.ts",
"lint:fix": "tslint --fix src/**/*.ts",
"prepare": "husky"
},
"keywords": [
"crypto",
"cryptographic",
"encryption",
"decryption",
"security",
"aes",
"rsa",
"crypt",
"encrypt",
"decrypt",
"password",
"key",
"iv",
"cipher",
"secure",
"secret",
"secrets",
"symmetric-encryption",
"symmetric-decryption",
"symmetric-cryptography",
"asymmetric-encryption",
"asymmetric-decryption",
"asymmetric-cryptography",
"rsa-encryption",
"rsa-decryption"
],
"author": {
"name": "Fernando Dorantes Monsiváis",
"email": "fernando@dorant.es",
"url": "https://linkedin.com/in/fdorantesm"
},
"repository": {
"type": "git",
"url": "https://github.com/fdorantesm/cryptaculous"
},
"bugs": {
"url": "https://github.com/fdorantesm/cryptaculous/issues"
},
"homepage": "https://github.com/fdorantesm/cryptaculous#readme",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"husky": "^9.0.11",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.7",
"terser": "^5.31.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.5.2"
},
"dependencies": {},
"files": [
"dist"
]
}