-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 KB
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": "shieldx",
"version": "2.0.1",
"description": "A CLI tool to compare, sync, and validate .env files (AI-powered soon)",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:unit": "jest test/unit"
},
"keywords": [
"env",
"dotenv",
"sync",
"cli",
"developer-tools",
"environment-variables",
"configuration",
"automation",
"productivity",
"devops"
],
"author": "zeemscript",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"dotenv": "^17.2.2",
"inquirer": "^12.10.0",
"ora": "^9.0.0"
},
"bin": {
"shieldx": "bin/shieldx.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeemscript/shieldx.git"
},
"bugs": {
"url": "https://github.com/zeemscript/shieldx/issues"
},
"homepage": "https://github.com/zeemscript/shieldx#readme",
"type": "module",
"devDependencies": {
"jest": "^29.7.0"
}
}