-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
94 lines (94 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
94
{
"name": "node-vault",
"version": "0.10.2",
"description": "Javascript client for HashiCorp's Vault",
"main": "./src/index.js",
"scripts": {
"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"
},
"engines": {
"node": ">= 16.0.0"
},
"directories": {
"example": "./example",
"doc": "./docs"
},
"files": [
"src",
"index.d.ts"
],
"dependencies": {
"debug": "^4.3.4",
"mustache": "^4.2.0",
"postman-request": "^2.88.1-postman.33",
"tv4": "^1.3.0"
},
"devDependencies": {
"@types/request": "^2.48.8",
"chai": "^4.3.7",
"dirty-chai": "^2.0.1",
"docco": "^0.9.1",
"eslint": "^8.45.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
},
"repository": {
"type": "git",
"url": "git://github.com/kr1sp1n/node-vault.git"
},
"keywords": [
"vault",
"hashicorp",
"secrets",
"manage",
"client"
],
"author": "kr1sp1n <[email protected]> (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"
}