-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "vault-auth-aws",
"version": "0.3.0",
"description": "js module that get token from vault HashiCorp server by using AWS STS ",
"author": "Abdullah Shahin <[email protected]>",
"license": "ISC",
"main": "index.js",
"bugs": {
"url": "https://github.com/abdullahshahin/vault-auth-aws/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/abdullahshahin/vault-auth-aws"
},
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf node_modules && npm install",
"test": "lab test",
"lint": "eslint ./libs index.js",
"lint-fix": "eslint ./libs index.js --fix",
"lint-test": "eslint ./test",
"lint-test-fix": "eslint ./test --fix",
"coverage": "lab -r console -o stdout -r html -o ./coverage/coverage.html -r junit -o ./coverage/junit.xml test -r lcov -o ./coverage/lcov.info"
},
"pre-commit": [
"lint-fix",
"lint-test-fix",
"test"
],
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"vault",
"hashicorp",
"token",
"aws",
"lambda",
"sts"
],
"dependencies": {
"@aws-sdk/credential-provider-node": "^3.95.0",
"aws4": "^1.11.0",
"got": "^11.8.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@hapi/lab": "^25.0.1",
"chai": "^4.3.4",
"typescript": "^4.3.5"
}
}