-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 747 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 747 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
{
"name": "smenv",
"version": "2.0.0",
"description": "Sync AWS Secret Manager secrets with .env file",
"main": "index.js",
"type": "module",
"scripts": {
"test": "ava test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amitosdev/smenv.git"
},
"bin": {
"smenv": "bin/cli.js"
},
"author": "AmitosDev",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "2.2.2",
"ava": "^6.4.1",
"aws-sdk-mock": "^6.2.1",
"mock-fs": "^5.5.0"
},
"dependencies": {
"cli-color": "^2.0.4",
"debug": "^4.4.1",
"deep-object-diff": "^1.1.9",
"envfile": "^7.1.0",
"lodash.isempty": "^4.4.0",
"mysterio": "^2.2.1",
"yargs": "^18.0.0"
}
}