-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "caselyjs",
"version": "1.0.4",
"author": "thatonevikash",
"description": "Rename codebase files and directories with ease",
"repository": {
"type": "git",
"url": "git+https://github.com/thatonevikash/caselyjs.git"
},
"keywords": [
"naming convention tool",
"file / folder renamer",
"case changer",
"kebab case to pascal case",
"pascal case to camel case",
"came case to kebab case"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thatonevikash/caselyjs/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"homepage": "https://github.com/thatonevikash/caselyjs#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"casely": "dist/bin.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/bin.js",
"dev": "ts-node src/bin.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0"
},
"devDependencies": {
"@types/node": "^20.19.39",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}