@agilecustoms/envctl 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +6 -0
- package/package.json +16 -7
package/LICENSE
ADDED
package/package.json
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agilecustoms/envctl",
|
|
3
|
+
"version": "1.6.1",
|
|
3
4
|
"description": "node.js CLI client for manage environments",
|
|
4
|
-
"
|
|
5
|
-
|
|
5
|
+
"keywords": [
|
|
6
|
+
"terraform wrapper",
|
|
7
|
+
"auto deletion"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/agilecustoms/envctl",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/agilecustoms/envctl/issues"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/agilecustoms/envctl.git"
|
|
16
|
+
},
|
|
17
|
+
"license": "UNLICENSED",
|
|
18
|
+
"author": "Alexey Chekulaev <chekulaevalexey@gmail.com> (https://github.com/laxa1986)",
|
|
6
19
|
"type": "module",
|
|
7
20
|
"engines": {
|
|
8
21
|
"node": ">=22.0.0"
|
|
9
22
|
},
|
|
23
|
+
"private": false,
|
|
10
24
|
"bin": {
|
|
11
25
|
"envctl": "dist/index.js"
|
|
12
26
|
},
|
|
@@ -14,11 +28,6 @@
|
|
|
14
28
|
"dist/",
|
|
15
29
|
"package.json"
|
|
16
30
|
],
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/agilecustoms/envctl.git"
|
|
20
|
-
},
|
|
21
|
-
"license": "UNLICENSED",
|
|
22
31
|
"_comment0": "to run via `npx` you must use `name` (with scope) and have at least one entry in `bin`. Key does not matter when run via `npx`",
|
|
23
32
|
"_comment1": "keys become CLI apps (symlinks) when install globally. ex: npm install -g @agilecustoms/envctl; ls $(which alexc-blah) >> lrwxr-xr-x 1 alexc admin 62 Dec 30 14:29 /opt/homebrew/bin/alexc-blah -> ../lib/node_modules/@agilecustoms/envctl-client/dist/index.js",
|
|
24
33
|
"scripts": {
|