-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 887 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 887 Bytes
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
{
"name": "zest-encryption",
"version": "1.0.14",
"description": "Hybrid encryption powered by RSA and AES",
"main": "index.js",
"scripts": {
"test": "node test.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnkrcc/zest.git"
},
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"keywords": [
"encrypt",
"encryption",
"simple",
"AES",
"RSA",
"Zest",
"hybrid"
],
"author": "Vihanga Weerasinghe (vihanga@mnkr.cc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mnkrcc/zest/issues"
},
"homepage": "https://github.com/mnkrcc/zest#readme",
"devDependencies": {
"all-contributors-cli": "^6.26.1"
},
"dependencies": {
"sha256": "^0.2.0"
}
}