package.json
1 { 2 "name": "camelcase", 3 "version": "6.2.0", 4 "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", 5 "license": "MIT", 6 "repository": "sindresorhus/camelcase", 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 "engines": { 14 "node": ">=10" 15 }, 16 "scripts": { 17 "test": "xo && ava && tsd" 18 }, 19 "files": [ 20 "index.js", 21 "index.d.ts" 22 ], 23 "keywords": [ 24 "camelcase", 25 "camel-case", 26 "camel", 27 "case", 28 "dash", 29 "hyphen", 30 "dot", 31 "underscore", 32 "separator", 33 "string", 34 "text", 35 "convert", 36 "pascalcase", 37 "pascal-case" 38 ], 39 "devDependencies": { 40 "ava": "^1.4.1", 41 "tsd": "^0.11.0", 42 "xo": "^0.28.3" 43 } 44 }