-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 803 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 803 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
{
"author": "Mark Cavage <mcavage@gmail.com>",
"contributors": [
"Dave Eddy <dave@daveeddy.com>",
"Patrick Mooney <patrick.f.mooney@gmail.com>",
"Dave Pacheco <dap@joyent.com>"
],
"name": "ssh-agent",
"description": "An API for interacting with the SSH Agent.",
"version": "0.2.4",
"repository": {
"type": "git",
"url": "git://github.com/mcavage/node-ssh-agent.git"
},
"bin": {
"ssha-list": "./bin/ssha-list",
"ssha-sign": "./bin/ssha-sign"
},
"main": "lib/ssh_agent_client",
"engines": {
"node": ">= 0.8"
},
"dependencies": {
"ctype": "0.5.4",
"posix-getopt": "1.1.0"
},
"devDependencies": {
"faucet": "0.0.1",
"tape": "3.5.0"
},
"scripts": {
"test": "node ./test/agent.test.js | ./node_modules/.bin/faucet"
}
}