Skip to content

Commit e8322c8

Browse files
committed
Lowercase group names
1 parent 526e21d commit e8322c8

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

bin/cli_commands.json

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@
99
"cmd": "arch",
1010
"desc": "Operating system CPU architecture.",
1111
"pkg": "@stdlib/os/arch",
12-
"group": "System"
12+
"group": "system"
1313
},
1414
{
1515
"cmd": "bundle-pkg-list",
1616
"desc": "Bundle a list of stdlib packages.",
1717
"pkg": "@stdlib/_tools/bundle/pkg-list",
18-
"group": "Tools"
18+
"group": "tools"
1919
},
2020
{
2121
"cmd": "capitalize",
2222
"desc": "Capitalize the first character in a string.",
2323
"pkg": "@stdlib/string/capitalize",
24-
"group": "Utils"
24+
"group": "utils"
2525
},
2626
{
2727
"cmd": "configdir",
2828
"desc": "Configuration directory path.",
2929
"pkg": "@stdlib/os/configdir",
30-
"group": "System"
30+
"group": "system"
3131
},
3232
{
3333
"cmd": "cwd",
3434
"desc": "Current working directory.",
3535
"pkg": "@stdlib/process/cwd",
36-
"group": "System"
36+
"group": "system"
3737
},
3838
{
3939
"cmd": "datasets",
@@ -45,121 +45,121 @@
4545
"cmd": "ends-with",
4646
"desc": "Test if a string ends with another string.",
4747
"pkg": "@stdlib/string/ends-with",
48-
"group": "Utils"
48+
"group": "utils"
4949
},
5050
{
5151
"cmd": "from-code-point",
5252
"desc": "Create a string from a sequence of code points.",
5353
"pkg": "@stdlib/string/from-code-point",
54-
"group": "Utils"
54+
"group": "utils"
5555
},
5656
{
5757
"cmd": "homedir",
5858
"desc": "Home directory path.",
5959
"pkg": "@stdlib/os/homedir",
60-
"group": "System"
60+
"group": "system"
6161
},
6262
{
6363
"cmd": "lpad",
6464
"desc": "Left pad a string.",
6565
"pkg": "@stdlib/string/left-pad",
66-
"group": "Utils"
66+
"group": "utils"
6767
},
6868
{
6969
"cmd": "ltrim",
7070
"desc": "Left trim a string.",
7171
"pkg": "@stdlib/string/left-trim",
72-
"group": "Utils"
72+
"group": "utils"
7373
},
7474
{
7575
"cmd": "lowercase",
7676
"desc": "Lowercase a string.",
7777
"pkg": "@stdlib/string/lowercase",
78-
"group": "Utils"
78+
"group": "utils"
7979
},
8080
{
8181
"cmd": "ls",
8282
"desc": "List stdlib package names.",
8383
"pkg": "@stdlib/_tools/pkgs/names",
84-
"group": "Meta"
84+
"group": "meta"
8585
},
8686
{
8787
"cmd": "ls-tree",
8888
"desc": "Show stdlib package tree.",
8989
"pkg": "@stdlib/_tools/pkgs/tree",
90-
"group": "Meta"
90+
"group": "meta"
9191
},
9292
{
9393
"cmd": "node-version",
9494
"desc": "Node.js version.",
9595
"pkg": "@stdlib/process/node-version",
96-
"group": "Meta"
96+
"group": "meta"
9797
},
9898
{
9999
"cmd": "ns",
100100
"desc": "Print stdlib namespace.",
101101
"pkg": "@stdlib/namespace",
102-
"group": "Meta"
102+
"group": "meta"
103103
},
104104
{
105105
"cmd": "num-cpus",
106106
"desc": "Number of CPUs.",
107107
"pkg": "@stdlib/os/num-cpus",
108-
"group": "System"
108+
"group": "system"
109109
},
110110
{
111111
"cmd": "padstr",
112112
"desc": "Pad a string.",
113113
"pkg": "@stdlib/string/pad",
114-
"group": "Utils"
114+
"group": "utils"
115115
},
116116
{
117117
"cmd": "percent-encode",
118118
"desc": "Percent-encode a UTF-16 encoded string.",
119119
"pkg": "@stdlib/string/percent-encode",
120-
"group": "Utils"
120+
"group": "utils"
121121
},
122122
{
123123
"cmd": "platform",
124124
"desc": "Platform.",
125125
"pkg": "@stdlib/os/platform",
126-
"group": "System"
126+
"group": "system"
127127
},
128128
{
129129
"cmd": "remove-first",
130130
"desc": "Remove the first character in a string.",
131131
"pkg": "@stdlib/string/remove-first",
132-
"group": "Utils"
132+
"group": "utils"
133133
},
134134
{
135135
"cmd": "remove-last",
136136
"desc": "Remove the last character in a string.",
137137
"pkg": "@stdlib/string/remove-last",
138-
"group": "Utils"
138+
"group": "utils"
139139
},
140140
{
141141
"cmd": "remove-punctuation",
142142
"desc": "Remove punctuation characters from a string.",
143143
"pkg": "@stdlib/string/remove-punctuation",
144-
"group": "Utils"
144+
"group": "utils"
145145
},
146146
{
147147
"cmd": "remove-utf8-bom",
148148
"desc": "Remove a UTF-8 byte order mark (BOM).",
149149
"pkg": "@stdlib/string/remove-first",
150-
"group": "Utils"
150+
"group": "utils"
151151
},
152152
{
153153
"cmd": "remove-words",
154154
"desc": "Remove a list of words from a string.",
155155
"pkg": "@stdlib/string/remove-words",
156-
"group": "Utils"
156+
"group": "utils"
157157
},
158158
{
159159
"cmd": "repstr",
160160
"desc": "Repeat a string.",
161161
"pkg": "@stdlib/string/repeat",
162-
"group": "Utils"
162+
"group": "utils"
163163
},
164164
{
165165
"cmd": "repl",
@@ -171,72 +171,72 @@
171171
"cmd": "replace",
172172
"desc": "Replace search occurrences in a string.",
173173
"pkg": "@stdlib/string/replace",
174-
"group": "Utils"
174+
"group": "utils"
175175
},
176176
{
177177
"cmd": "reverse",
178178
"desc": "Reverse a string.",
179179
"pkg": "@stdlib/string/reverse",
180-
"group": "Utils"
180+
"group": "utils"
181181
},
182182
{
183183
"cmd": "rpad",
184184
"desc": "Right pad a string.",
185185
"pkg": "@stdlib/string/right-pad",
186-
"group": "Utils"
186+
"group": "utils"
187187
},
188188
{
189189
"cmd": "rtrim",
190190
"desc": "Right trim a string.",
191191
"pkg": "@stdlib/string/right-trim",
192-
"group": "Utils"
192+
"group": "utils"
193193
},
194194
{
195195
"cmd": "sparkline",
196196
"desc": "Plot a sparkline.",
197197
"pkg": "@stdlib/plot/sparklines/unicode",
198-
"group": "Plot"
198+
"group": "plot"
199199
},
200200
{
201201
"cmd": "startcase",
202202
"desc": "Capitalize each word in a string.",
203203
"pkg": "@stdlib/string/startcase",
204-
"group": "Utils"
204+
"group": "utils"
205205
},
206206
{
207207
"cmd": "starts-with",
208208
"desc": "Test if a string starts with another string.",
209209
"pkg": "@stdlib/string/starts-with",
210-
"group": "Utils"
210+
"group": "utils"
211211
},
212212
{
213213
"cmd": "tmpdir",
214214
"desc": "Directory path for storing temporary files.",
215215
"pkg": "@stdlib/os/tmpdir",
216-
"group": "System"
216+
"group": "system"
217217
},
218218
{
219219
"cmd": "trim",
220220
"desc": "Trim a string.",
221221
"pkg": "@stdlib/string/trim",
222-
"group": "Utils"
222+
"group": "utils"
223223
},
224224
{
225225
"cmd": "umask",
226226
"desc": "Process mask.",
227227
"pkg": "@stdlib/process/umask",
228-
"group": "System"
228+
"group": "system"
229229
},
230230
{
231231
"cmd": "uncapitalize",
232232
"desc": "Uncapitalize a string.",
233233
"pkg": "@stdlib/string/uncapitalize",
234-
"group": "Utils"
234+
"group": "utils"
235235
},
236236
{
237237
"cmd": "uppercase",
238238
"desc": "Uppercase a string.",
239239
"pkg": "@stdlib/string/uppercase",
240-
"group": "Utils"
240+
"group": "utils"
241241
}
242242
]

0 commit comments

Comments
 (0)