forked from namecheap/node-vault-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "node-vault-client",
"version": "0.5.6",
"description": "A Vault Client implemented in pure javascript for HashiCorp Vault. It supports variety of Auth Backends and performs lease renewal for issued auth token.",
"repository": "github:namecheap/node-vault-client",
"engines": {
"node": ">=6.0.0"
},
"main": "src/VaultClient.js",
"files": [
"src"
],
"scripts": {
"test": "mocha test/**/*.test.js",
"version": "git add -A ."
},
"author": "Vlad Fedosov <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"assign-deep": "^1.0.1",
"aws4": "^1.8.0",
"bluebird": "^3.7.0",
"lodash": "^4.17.15",
"long-timeout": "^0.1.1",
"pretty-ms": "^2.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"url-join": "^2.0.5"
},
"peerDependencies": {
"config": "1.x",
"aws-sdk": "^2.67.0"
},
"devDependencies": {
"aws-sdk": "^2.544.0",
"chai": "^3.5.0",
"co-mocha": "^1.2.2",
"deep-freeze": "^0.0.1",
"mocha": "^3.5.3",
"sinon": "^2.4.1",
"sinon-chai": "^2.14.0"
}
}