This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 KB
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
{
"name": "@netresearch/vault-read",
"description": "Read and print secrets from Hashicorp Vault",
"version": "1.3.1",
"author": "Paul Siedler <paul.siedler@netresearch.de>",
"bin": {
"vault-read": "./bin/run"
},
"bugs": "https://github.com/netresearch/vault-read/issues",
"dependencies": {
"@oclif/core": "^3.27.0",
"node-vault": "https://github.com/netresearch/node-vault.git#689f0e529f6a43644f1fe9c38cde5a494741a242",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^10.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"nock": "^14.0.10",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/netresearch/vault-read",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"commands": "./lib",
"bin": "vault-read"
},
"repository": "netresearch/vault-read",
"scripts": {
"postinstall": "sh scripts/postinstall.sh",
"test": "vitest run",
"lint": "eslint . --ext .ts,.tsx",
"build:lib": "tsc",
"prepare": "husky"
},
"types": "lib/index.d.ts",
"resolutions": {
"got": "14.6.6"
}
}