-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 958 Bytes
/
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
{
"name": "crypi",
"version": "1.1.3",
"description": "A fun and simple security library for NodeJS with easy integration",
"type": "module",
"private": false,
"author": "Julio Cesar Garcia <[email protected]> (https://juliogarciape.live/)",
"homepage": "https://github.com/juliogarciape/crypi#README",
"license": "GPL-3.0-only",
"main": "./src/index.js",
"scripts": {
"dev": "node ./src/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"Fun Algorithms",
"Caesar Cipher",
"Security",
"Encryption",
"Cryptography",
"Decryption",
"Decrypt",
"Crypt",
"Hashing"
],
"repository": {
"type": "git",
"url": "https://github.com/juliogarciape/crypi.git"
},
"bugs": {
"url": "https://github.com/juliogarciape/crypi/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"jest": "29.7.0"
}
}