-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "@jwerre/secrets",
"version": "2.0.4",
"description": "Synchronously retrieve all secretes from AWS Secrets Manager and create a tidy JSON object.",
"main": "index.js",
"homepage": "https://github.com/jwerre/secrets/blob/master/README.md",
"repository": "https://github.com/jwerre/secrets",
"scripts": {
"test": "mocha test",
"spell": "cspell ./",
"lint": "eslint lib bin test.js index.js",
"patch": "npm version patch && git push origin master && git push --tags && npm publish"
},
"keywords": [
"secrets manager",
"secrets",
"aws",
"configuration",
"config",
"encryption",
"kms",
"hash",
"app config",
"blocking",
"synchronous",
"cli",
"EC2",
"Lambda"
],
"author": "Jonah Werre <[email protected]>",
"engine": "12",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.438.0",
"js-yaml": "^3.14.0",
"minimist": "^1.2.6"
},
"devDependencies": {
"cspell": "^7.3.8",
"eslint": "^8.52.0",
"mocha": "^10.2.0"
},
"bin": {
"create-secrets": "./bin/create-secrets.js",
"delete-secrets": "./bin/delete-secrets.js",
"get-config": "./bin/get-config.js"
}
}