-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 948 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 948 Bytes
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
{
"name": "mysterio",
"version": "3.3.0",
"description": "Get secrets from AWS secret manager and merge them with ENV configs",
"type": "module",
"main": "index.mjs",
"types": "index.d.ts",
"bin": {
"mysterio": "./cli/index.mjs"
},
"scripts": {
"test": "ava",
"lint": "biome check --write --diagnostic-level error"
},
"repository": "https://github.com/amitosdev/mysterio.git",
"homepage": "https://github.com/amitosdev/mysterio#readme",
"author": "Amit Tal",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"ava": "^6.4.1",
"aws-sdk-mock": "^6.2.1"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.958.0",
"@donedeal0/superdiff": "^3.2.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"debug": "^4.4.3",
"flat": "^6.0.1",
"lodash.capitalize": "^4.2.1",
"lodash.isstring": "^4.0.1",
"lodash.merge": "^4.6.2"
}
}