-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "casecraft",
"version": "1.9.3",
"description": "A lightweight utility for converting strings between common naming conventions like camelCase, PascalCase, snake_case, kebab-case, and dot.case.",
"main": "casecraft.js",
"scripts": {
"test": "node test.js",
"start": "node casecraft.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabforms/casecraft.git"
},
"keywords": [
"string-conversion",
"case-conversion",
"case-utils",
"camelcase",
"pascalcase",
"snakecase",
"screaming-snake-case",
"lowercase",
"uppercase",
"camelcase-snake-case",
"kebabcase",
"screaming-kebab-case",
"spongebob-case",
"pascal-case",
"train-case",
"title-case",
"dotcase",
"pathcase",
"slugcase",
"mixedcase",
"nospaces",
"human-readable",
"reverse-case",
"js-utils",
"javascript-utilities"
],
"author": "Geoffrey Callaghan",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabforms/casecraft/issues"
},
"homepage": "https://github.com/fabforms/casecraft#readme",
"dependencies": {
"casecraft": "^1.3.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}