forked from kyndryl-open-source/hashi-vault-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.74 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
{
"name": "hashi-vault-js",
"version": "0.4.15",
"description": "A node.js module to interact with the Hashicorp Vault API.",
"main": "Vault.js",
"types": "dist/Vault.d.ts",
"scripts": {
"compile": "npx tsc",
"test:approle": "bash -c 'source tests/process.env && jest tests/AppRole.test.js'",
"test-ts:approle": "bash -c 'source tests/process.env && jest tests/AppRole.test.ts'",
"test:kv": "bash -c 'source tests/process.env && jest tests/KV.test.js'",
"test:ldap": "bash -c 'source tests/process.env && jest tests/LDAP.test.js'",
"test:sys-seal": "bash -c 'source tests/process.env && jest tests/Seal.test.js'",
"test:sys-api": "bash -c 'source tests/process.env && jest tests/SysApi.test.js'",
"test:token": "bash -c 'source tests/process.env && jest tests/Token.test.js'",
"test:userpass": "bash -c 'source tests/process.env && jest tests/Userpass.test.js'",
"test:pki-gen": "bash -c 'source tests/process.env && jest tests/PKI-gen.test.js'",
"test:pki-ca": "bash -c 'source tests/process.env && jest tests/PKI-ca.test.js'",
"test:pki-roles": "bash -c 'source tests/process.env && jest tests/PKI-roles.test.js'",
"test:k8s": "bash -c 'source tests/process.env && jest tests/K8s.test.js'",
"test:ad-config": "bash -c 'source tests/process.env && jest tests/AD-config.test.js'",
"test:ad-roles": "bash -c 'source tests/process.env && jest tests/AD-roles.test.js'",
"test:ad-libraries": "bash -c 'source tests/process.env && jest tests/AD-libraries.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rod4n4m1/hashi-vault-js"
},
"keywords": [
"kyndryl",
"hashicorp",
"nodejs",
"promises",
"api",
"async",
"vault"
],
"author": "Rod Anami <rod.anami@kyndryl.com> (https://github.com/rod4n4m1)",
"contributors": [
"Richard <richie765@> (https://github.com/Richie765)",
"Ordinary IT9 <hkgnobody@> (https://github.com/hkgnobody)",
"Osama Adil <dilosama47@gmail.com> (https://github.com/phr3nzy)",
"Jose <josedev-union@> (https://github.com/josedev-union)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rod4n4m1/hashi-vault-js/issues"
},
"homepage": "https://github.com/rod4n4m1/hashi-vault-js#readme",
"engines": {
"node": ">=16"
},
"dependencies": {
"axios": "^1.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^18.15.10",
"jest": "^29.5.0",
"random-words": "^1.3.0",
"ts-jest": "^29.1.1",
"typescript": "^5.0.2"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "/tests/.*\\.(test|spec)?\\.(ts|tsx)$",
"moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ]
}
}