forked from nodevault/node-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.99 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "node-vault",
"version": "0.9.22",
"description": "Javascript client for HashiCorp's Vault",
"main": "./src/index.js",
"scripts": {
"precoverage": "npm run lint",
"coverage": "nyc --reporter=lcov npm test",
"lint": "eslint .",
"test": "mocha",
"test-unit": "mocha test/unit.js",
"test-watch": "mocha --watch",
"predocs": "node scripts/write-features.js",
"docs": "docco --output docs src/*.js"
},
"directories": {
"example": "./example",
"doc": "./docs"
},
"files": [
"src",
"index.d.ts"
],
"dependencies": {
"debug": "3.1.0",
"mustache": "^2.2.1",
"request": "2.88.0",
"request-promise-native": "1.0.7",
"tv4": "^1.2.7"
},
"devDependencies": {
"@types/request": "^2.48.1",
"chai": "3.5.0",
"dirty-chai": "^1.2.2",
"docco": "0.8.0",
"eslint": "^8.40.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "1.17.3",
"sinon-chai": "^2.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/kr1sp1n/node-vault.git"
},
"keywords": [
"vault",
"hashicorp",
"secrets",
"manage",
"client"
],
"author": "kr1sp1n <krispin@posteo.de> (https://github.com/kr1sp1n)",
"contributors": [
"Adam Kelsall (https://github.com/adamkelsall)",
"Alex Early (https://github.com/aearly)",
"Brandon Ros (https://github.com/brandonros)",
"Charles Phillips (https://github.com/doublerebel)",
"David Drewery (https://github.com/EXPEddrewery)",
"Dustin (https://github.com/at88mph)",
"Jason Nguyen (https://github.com/gofightnguyen)",
"Jeff Sisson (https://github.com/saranrapjs)",
"Jonathan Bastnagel (https://github.com/inkadnb)",
"Julian Amelung (https://github.com/julianbei)",
"Karthik Kumar Viswanathan (https://github.com/guilt)",
"Kevin Stiehl (https://github.com/kstiehl)",
"Konstantin Matsiushonak (https://github.com/kakoc)",
"Mario Pareja (https://github.com/mpareja)",
"Mark Frost (https://github.com/frostmar)",
"Owen Farrell (https://github.com/owenfarrell)",
"Parker Johansen (https://github.com/auroq)",
"Patrick Rainier Juen (https://github.com/uLan08)",
"Phred Lane (https://github.com/fearphage)",
"Ryan Lewis (https://github.com/ryanlewis)",
"Samuel Parkinson (https://github.com/sjparkinson)",
"Saverio Proto (https://github.com/zioproto)",
"Sean Gallavan (https://github.com/seangallavan)",
"seyfert (https://github.com/seyfert)",
"Simon Boulet (https://github.com/siboulet)",
"Tim Robinson (https://github.com/timjrobinson)",
"Tom Vogel (https://github.com/tavogel)",
"Trevor Robinson (https://github.com/trevorr)",
"Vineet Bhatia (https://github.com/firefoxNX)",
"Vladyslav Mashkin (https://github.com/jsdream)",
"Wes Novack (https://github.com/wes-novack)",
"Zach Lintz (https://github.com/zlintz)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kr1sp1n/node-vault/issues"
},
"homepage": "https://github.com/kr1sp1n/node-vault"
}