forked from cludden/vault-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "vault-client",
"version": "0.3.0",
"description": "js client for HashiCorp's vault",
"main": "index.js",
"scripts": {
"coverage": "node -e \"require('grunt').tasks(['coverage']);\"",
"test": "mocha test/tests/index.test.js test/tests/ --recursive",
"test:some": "mocha test/tests/index.test.js"
},
"keywords": [
"vault",
"hashicorp",
"node"
],
"author": "chris ludden",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cludden/vault-client"
},
"dependencies": {
"async": "^1.5.2",
"axios": "^0.11.1",
"axios-mock-adapter": "^1.4.0",
"joi": "^8.4.0",
"lodash": "^4.13.1",
"long-timeout": "^0.1.1",
"retry": "^0.9.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.11.1",
"faker": "^3.1.0",
"grunt": "^1.0.1",
"grunt-mocha-istanbul": "^5.0.1",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"ms": "^0.7.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
}
}