variable-name-conversion
Version:
To easily convert a variable name to camelCase, kebab-case, etc.
55 lines (54 loc) • 1.2 kB
JSON
{
"name": "variable-name-conversion",
"version": "1.5.0",
"description": "To easily convert a variable name to camelCase, kebab-case, etc.",
"author": "lunate",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/otomad/variable-name-conversion.git"
},
"homepage": "https://github.com/otomad/variable-name-conversion",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clear": "rimraf dist",
"build": "npm run clear && tsc --build && npm run fix:prettier-dist",
"fix:prettier-dist": "prettier dist/**/*.{js,ts} --write --ignore-path=.prettierignore"
},
"keywords": [
"variable",
"variable-name",
"convert",
"conversion",
"convert-case",
"case",
"change-case",
"transform",
"camelcase",
"pascalcase",
"kebabcase",
"snakecase",
"camel-case",
"pascal-case",
"kebab-case",
"snake-case",
"camel",
"pascal",
"kebab",
"snake",
"constant"
],
"devDependencies": {
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo"
]
}