forked from TritonDataCenter/node-sshpk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.21 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
{
"name": "sshpk",
"version": "1.16.1",
"description": "A library for finding and using SSH public keys",
"main": "lib/index.js",
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joyent/node-sshpk.git"
},
"author": "Joyent, Inc",
"contributors": [
{
"name": "Dave Eddy",
"email": "[email protected]"
},
{
"name": "Mark Cavage",
"email": "[email protected]"
},
{
"name": "Alex Wilson",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/arekinath/node-sshpk/issues"
},
"engines": {
"node": ">=0.10.0"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"man": "./man/man1"
},
"homepage": "https://github.com/arekinath/node-sshpk#readme",
"dependencies": {
"asn1": "~0.2.4",
"assert-plus": "^1.0.0",
"dashdash": "^1.14.1",
"getpass": "^0.1.7",
"safer-buffer": "^2.1.2",
"jsbn": "~1.1.0",
"tweetnacl": "~1.0.1",
"ecc-jsbn": "~0.2.0",
"bcrypt-pbkdf": "^1.0.2"
},
"devDependencies": {
"tape": "^4.13.0",
"benchmark": "^2.1.4",
"sinon": "^8.0.4",
"temp": "^0.9.1"
}
}