-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 853 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": "ethereum-rsa",
"version": "1.0.5",
"description": "Encrypt and Decrypt message using Ethereum keys.",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js"
},
"keywords": [
"ethereum",
"public key",
"private key",
"encryption",
"decryption",
"rsa",
"cryptography",
"message",
"key-pair"
],
"repository": {
"type": "git",
"url": "https://github.com/meetsiraja/ethereum-rsa.git"
},
"bugs": {
"url": "https://github.com/meetsiraja/ethereum-rsa/issues"
},
"homepage": "https://github.com/meetsiraja/ethereum-rsa",
"author": "https://github.com/meetsiraja",
"license": "MIT",
"dependencies": {
"eth-key-pair": "^1.0.0",
"scrypt-js": "^3.0.0",
"secp256k1": "^4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.0"
}
}