smart-string-formatter 1.0.0 → 1.0.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/README.md +10 -0
- package/package.json +6 -3
package/README.md
ADDED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "smart-string-formatter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A lightweight, zero-dependency utility to instantly convert strings into CamelCase, PascalCase, Snake_Case, Kebab-Case, and URL-friendly Slugs. Handles special characters, irregular spacing, and accents automatically.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "node test.js",
|
|
8
|
-
"start":"node index.js"
|
|
8
|
+
"start": "node index.js"
|
|
9
9
|
},
|
|
10
10
|
"keywords": [
|
|
11
11
|
"string",
|
|
@@ -17,5 +17,8 @@
|
|
|
17
17
|
"slug"
|
|
18
18
|
],
|
|
19
19
|
"author": "Gayathree",
|
|
20
|
-
"license": "MIT"
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"smart-string-formatter": "^1.0.0"
|
|
23
|
+
}
|
|
21
24
|
}
|