-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 908 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": "@xdream77/case-converter",
"version": "1.0.8",
"description": "Converts naming cases from one to another. For Example: camelCase to snake_case.",
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/xdream77/case-converter",
"scripts": {
"test": "jest --coverage",
"dev": "node example.js"
},
"keywords": [
"pascal to camel",
"pascal to snake",
"pascal to kebab",
"kebab to camel",
"kebab to pascal",
"kebab to snake",
"camel to pascal",
"camel to kebab",
"camel to snake",
"snake to pascal",
"snake to camel",
"snake to kebab"
],
"author": "xdream77",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/xdream77/case-converter.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"jest": "^29.3.1"
}
}