forked from jcoglan/vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (27 loc) · 1.14 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
{ "name" : "vault"
, "description" : "Generates safe passwords for the web"
, "homepage" : "https://getvau.lt/"
, "author" : "James Coglan <[email protected]> (http://jcoglan.com/)"
, "keywords" : ["security", "passwords"]
, "license" : "MIT"
, "version" : "0.4.0"
, "engines" : {"node": ">=0.4.0"}
, "main" : "./lib/vault.js"
, "bin" : {"vault": "./bin/vault"}
, "preferGlobal" : true
, "dependencies" : { "async": "~0.2.0"
, "mkdirp": "~0.3.0"
, "posix-argv-parser": "~1.0.0"
, "pw": "~0.0.4"
, "ssh-agent": "~0.2.1"
, "vault-cipher": "~0.3.0"
}
, "devDependencies" : { "jstest": "" }
, "scripts" : { "postinstall" : "./node/scripts/postinstall"
, "test" : "node spec/node.js"
}
, "repository" : { "type" : "git"
, "url" : "git://github.com/jcoglan/vault.git"
}
, "bugs" : "http://github.com/jcoglan/vault/issues"
}