-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "node-vault-client",
"version": "2.0.1",
"description": "A Vault Client implemented in pure javascript for HashiCorp Vault. It supports variety of Auth Backends and performs lease renewal for issued auth token.",
"repository": {
"url": "git+https://github.com/namecheap/node-vault-client.git"
},
"engines": {
"node": ">=18.0.0"
},
"main": "src/VaultClient.js",
"files": [
"src"
],
"scripts": {
"test": "mocha --exit \"test/**/*.test.mjs\"",
"test:unit": "mocha \"test/*.test.mjs\"",
"test:e2e": "mocha --exit \"test/e2e/**/*.test.mjs\"",
"coverage": "c8 npm run test:unit",
"lint": "eslint src/",
"version": "git add -A ."
},
"c8": {
"include": [
"src/**/*.js"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true
},
"author": "Namecheap <opensource@namecheap.com>",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/credential-providers": "^3.382.0",
"aws4": "^1.8.0",
"long-timeout": "^0.1.1"
},
"peerDependencies": {
"config": ">=1 <4"
},
"overrides": {
"serialize-javascript": "^7.0.5",
"glob": "^13.0.0",
"diff": "^8.0.3"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"c8": "^11.0.0",
"chai": "^6.0.0",
"deep-freeze": "^0.0.1",
"eslint": "^9.39.4",
"globals": "^17.6.0",
"lodash": "^4.17.21",
"mocha": "^11.7.6",
"sinon": "^22.0.0",
"sinon-chai": "^4.0.0"
}
}