convert-cases
Version:
A minimal utility function library that converts camelCase to snake_case and snake_case to camelCase.
58 lines • 1.59 kB
JSON
{
"name": "convert-cases",
"version": "2.0.0",
"description": "A minimal utility function library that converts camelCase to snake_case and snake_case to camelCase.",
"main": "dist/cjs/convert-cases.js",
"module": "dist/esm/convert-cases.js",
"unpkg": "dist/umd/convert-cases.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/akoarum/convert-cases.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"utility",
"camelCase",
"snake_case",
"deeply"
],
"author": "akoarum",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/akoarum/convert-cases/issues"
},
"homepage": "https://github.com/akoarum/convert-cases#readme",
"scripts": {
"build": "rollup -c",
"prepare": "husky install",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^27.5.0",
"@typescript-eslint/parser": "^5.22.0",
"commander": "^9.2.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.0.3",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"rollup": "^2.72.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"semver": "^7.3.7",
"ts-jest": "^28.0.1",
"typescript": "^4.6.4"
}
}