forked from nodevault/node-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.03 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.9.18",
"description": "Javascript client for HashiCorp's Vault",
"main": "./src/index.js",
"scripts": {
"precoverage": "npm run lint",
"coverage": "istanbul cover --report text-summary node_modules/.bin/_mocha",
"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",
"precommit": "node scripts/write-features.js && git add features.md"
},
"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": "2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-jsx-a11y": "1.2.0",
"eslint-plugin-react": "^5.2.2",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mocha": "6.0.2",
"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 <[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)",
"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)",
"Konstantin Matsiushonak (https://github.com/kakoc)",
"Mario Pareja (https://github.com/mpareja)",
"Mark Frost (https://github.com/frostmar)",
"Owen Farrell (https://github.com/owenfarrell)",
"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)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kr1sp1n/node-vault/issues"
},
"homepage": "https://github.com/kr1sp1n/node-vault"
}