-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 880 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "string-transform",
"type": "module",
"version": "21.9.19",
"description": "String-transform module from Glize library.",
"homepage": "https://glize.js.org",
"repository": "github:Datamart/string-transform",
"license": "Apache-2.0",
"main": "./index.js",
"exports": "./index.js",
"types": "./index.d.ts",
"scripts": {
"test": "node ./index.tests.js"
},
"bugs": {
"url": "https://github.com/Datamart/string-transform/issues"
},
"author": {
"name": "Valentin Podkamennyi",
"email": "[email protected]",
"url": "https://vpodk.com/"
},
"keywords": [
"string-transform",
"text-transform",
"capitalize",
"camel case",
"camelCase",
"pascal case",
"PascalCase",
"kebab case",
"kebab-case",
"snake case",
"snake_case",
"glize"
],
"dependencies": {
"uint": "latest"
}
}