1
|
{
|
2
|
"name": "diffie-hellman",
|
3
|
"version": "5.0.3",
|
4
|
"description": "pure js diffie-hellman",
|
5
|
"main": "index.js",
|
6
|
"browser": "browser.js",
|
7
|
"scripts": {
|
8
|
"test": "node test.js | tspec"
|
9
|
},
|
10
|
"repository": {
|
11
|
"type": "git",
|
12
|
"url": "https://github.com/crypto-browserify/diffie-hellman.git"
|
13
|
},
|
14
|
"keywords": [
|
15
|
"diffie",
|
16
|
"hellman",
|
17
|
"diffiehellman",
|
18
|
"dh"
|
19
|
],
|
20
|
"author": "Calvin Metcalf",
|
21
|
"license": "MIT",
|
22
|
"bugs": {
|
23
|
"url": "https://github.com/crypto-browserify/diffie-hellman/issues"
|
24
|
},
|
25
|
"homepage": "https://github.com/crypto-browserify/diffie-hellman",
|
26
|
"dependencies": {
|
27
|
"bn.js": "^4.1.0",
|
28
|
"miller-rabin": "^4.0.0",
|
29
|
"randombytes": "^2.0.0"
|
30
|
},
|
31
|
"devDependencies": {
|
32
|
"tap-spec": "^1.0.1",
|
33
|
"tape": "^3.0.1"
|
34
|
}
|
35
|
}
|