gerry-smith 1.0.0

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.
Files changed (4) hide show
  1. package/LICENSE +29 -0
  2. package/README.md +17 -0
  3. package/index.js +3 -0
  4. package/package.json +19 -0
package/LICENSE ADDED
@@ -0,0 +1,29 @@
1
+ ---
2
+
3
+ ## Sample LICENSE (MIT)
4
+
5
+ To create your `LICENSE` file, copy the text below and replace the bracketed information with the current year and your name.
6
+
7
+ ```text
8
+ MIT License
9
+
10
+ Copyright (c) [YEAR] [YOUR NAME]
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+ ```
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # Project Name
2
+
3
+ A brief, one-sentence description of what this project does (e.g., "A lightweight Python utility for converting JSON to CSV via the command line.")
4
+
5
+ ## 🚀 Features
6
+
7
+ - **Fast:** Optimized for large datasets.
8
+ - **Simple:** Minimal dependencies.
9
+ - **Flexible:** Supports custom mapping and filtering.
10
+
11
+ ## 📦 Installation
12
+
13
+ Install the package using [pip/npm/your-manager]:
14
+
15
+ ```bash
16
+ pip install project-name
17
+ ```
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export function hello(name = "world") {
2
+ return `Hello, ${name}!`;
3
+ }
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "gerry-smith",
3
+ "version": "1.0.0",
4
+ "description": "A lightweight Python utility for converting JSON to CSV via the command line.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "MIT",
12
+ "type": "module",
13
+ "files": [
14
+ "index.js",
15
+ "README.md",
16
+ "LICENSE",
17
+ "package.json"
18
+ ]
19
+ }