-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.38 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "case-anything",
"version": "3.1.0",
"description": "camelCase, kebab-case, PascalCase... a simple integration with nano package size. (SMALL footprint!)",
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "tsc --noEmit && eslint ./src",
"test": "vitest run",
"build": "del-cli dist && tsc",
"release": "npm run lint && npm run build && np"
},
"devDependencies": {
"del-cli": "^6.0.0",
"np": "^10.0.7",
"vitest": "^2.1.3",
"@cycraft/eslint": "^0.4.0",
"@cycraft/tsconfig": "^0.1.2"
},
"files": [
"dist"
],
"keywords": [
"change-case",
"change-casing",
"case-change",
"casing-change",
"camel-case",
"pascal-case",
"kebab-case",
"snake-case",
"ada-case",
"constant-case",
"train-case",
"cobol-case",
"path-case",
"dot-case",
"camel",
"pascal",
"kebab",
"snake",
"constant",
"path",
"format-string"
],
"author": "Luca Ban - Mesqueeb (https://cycraft.co)",
"funding": "https://github.com/sponsors/mesqueeb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mesqueeb/case-anything.git"
},
"homepage": "https://github.com/mesqueeb/case-anything#readme",
"bugs": "https://github.com/mesqueeb/case-anything/issues"
}