package.json (762B)
1 { 2 "name": "titleize", 3 "version": "3.0.0", 4 "description": "Capitalize every word in a string: `unicorn cake` → `Unicorn Cake`", 5 "license": "MIT", 6 "repository": "sindresorhus/titleize", 7 "funding": "https://github.com/sponsors/sindresorhus", 8 "author": { 9 "name": "Sindre Sorhus", 10 "email": "sindresorhus@gmail.com", 11 "url": "https://sindresorhus.com" 12 }, 13 "type": "module", 14 "exports": "./index.js", 15 "engines": { 16 "node": ">=12" 17 }, 18 "scripts": { 19 "test": "xo && ava && tsd" 20 }, 21 "files": [ 22 "index.js", 23 "index.d.ts" 24 ], 25 "keywords": [ 26 "titleize", 27 "title", 28 "capitalize", 29 "uppercase", 30 "case", 31 "dash", 32 "hyphen", 33 "string", 34 "text", 35 "convert" 36 ], 37 "devDependencies": { 38 "ava": "^3.15.0", 39 "tsd": "^0.14.0", 40 "xo": "^0.39.1" 41 } 42 }