UNPKG

smart-case

Version:

JavaScript library that provides advanced string casing capabilities with intelligent capitalization handling. It offers a comprehensive set of features to convert strings to various casing styles, including title case, sentence case, camel case, snake ca

95 lines (94 loc) 2.34 kB
{ "name": "smart-case", "version": "1.0.2", "description": "JavaScript library that provides advanced string casing capabilities with intelligent capitalization handling. It offers a comprehensive set of features to convert strings to various casing styles, including title case, sentence case, camel case, snake case, and kebab case, while ensuring consistent capitalization", "source": "src/index.ts", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "scripts": { "start": "ts-node src/index.ts", "prepare": "npm run build", "build": "npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir dist/cjs", "lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\" --fix", "test": "jest" }, "repository": { "type": "git", "url": "https://github.com/Nan0ck/smart-case" }, "keywords": [ "string", "casing", "capitalization", "text", "formatting", "smart", "intelligent", "title case", "sentence case", "camel case", "snake case", "kebab case", "consistent", "rules", "exceptions", "proper nouns", "acronyms", "transform", "manipulate", "library", "npm", "JavaScript", "code", "developer tools", "API", "utility", "formatting library", "case styles", "efficient", "high-performance", "programming", "string operations", "syntax", "conventions", "guidelines", "programming utility", "optimization", "smart formatting", "string manipulation", "code quality", "coding standards", "text processing", "consistency", "naming conventions", "ease-of-use", "development", "performance", "professional", "development tools", "npm package" ], "author": "nan0ck", "license": "ISC", "devDependencies": { "@types/jest": "^29.5.2", "@types/node": "^20.3.1", "@typescript-eslint/eslint-plugin": "^5.59.11", "@typescript-eslint/parser": "^5.59.11", "eslint": "^8.42.0", "husky": "^8.0.3", "jest": "^29.5.0", "rimraf": "^5.0.1", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typescript": "^5.3.3" }, "files": [ "dist", "LICENSE", "README.md" ] }