make-json-to-env 1.0.1 → 1.0.2
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/README.md +0 -20
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
Since you requested the `.md` file, here is the raw Markdown code for your **`README.md`**. You can copy and paste this directly into your project.
|
|
2
|
-
|
|
3
|
-
I’ve optimized the formatting to make it look professional on the npm registry page.
|
|
4
|
-
|
|
5
|
-
```markdown
|
|
6
1
|
# make-json-to-env 🚀
|
|
7
2
|
|
|
8
3
|
A lightweight CLI tool to transform your `JSON` configuration files into `.env` templates instantly. Perfect for generating `.env.example` files without manual typing.
|
|
@@ -86,18 +81,3 @@ export PROJECTID=
|
|
|
86
81
|
* **Smart Naming:** Automatically generates the output filename based on your input.
|
|
87
82
|
* **Case Formatting:** Automatically converts keys to `UPPER_CASE` for standard `.env` compliance.
|
|
88
83
|
* **Security First:** Helps you create `.env.example` files so you never accidentally commit your real secrets.
|
|
89
|
-
|
|
90
|
-
## 📄 License
|
|
91
|
-
|
|
92
|
-
[MIT](https://www.google.com/search?q=LICENSE)
|
|
93
|
-
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
---
|
|
97
|
-
|
|
98
|
-
### One last tip before you publish:
|
|
99
|
-
Make sure your `package.json` has the **description** and **keywords** filled out. This helps people find your package when they search on npm.
|
|
100
|
-
|
|
101
|
-
**Would you like me to generate a standard MIT `LICENSE` file text for you as well?**
|
|
102
|
-
|
|
103
|
-
```
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "make-json-to-env",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Generates a template .env.example from a config.json file",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"make-json-to-env": "./index.js"
|
|
8
8
|
},
|
|
9
|
-
|
|
9
|
+
"keywords": [
|
|
10
10
|
"env",
|
|
11
11
|
"json",
|
|
12
12
|
"converter",
|