-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
61 lines (54 loc) · 2.06 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
59
60
{ "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" : "GPL-3.0"
, "version" : "0.4.0"
, "engines" : {"node": ">=0.10.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"
, "remotestorage-oauth": "~0.2.0"
, "rimraf": "~2.2.0"
, "ssh-agent": "~0.2.1"
, "vault-cipher": "~0.4.0"
}
, "devDependencies" : { "jstest": "", "wake": "" }
, "scripts" : { "build" : "wake"
, "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"
, "wake": {
"javascript": {
"sourceDirectory": ".",
"targetDirectory": "web",
"builds": {
"min": {"digest": false, "tag": "suffix"}
},
"targets": {
"vault": [ "node_modules/vault-cipher/lib/crypto-js",
"node_modules/vault-cipher/lib/buffer",
"node_modules/vault-cipher/lib/crypto-shim",
"node_modules/vault-cipher/lib/vault-cipher",
"node_modules/async/lib/async",
"lib/vault",
"lib/adapter",
"lib/remotestorage",
"lib/rs_adapter",
"lib/loader",
"lib/store",
"lib/app"
]
}
}
}
}