package.json 873 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "pascalcase",
  3. "description": "Convert a string to pascal-case.",
  4. "version": "0.1.1",
  5. "homepage": "https://github.com/jonschlinkert/pascalcase",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/pascalcase",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/pascalcase/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "devDependencies": {
  23. "mocha": "*",
  24. "should": "*"
  25. },
  26. "keywords": [
  27. "camelcase",
  28. "case",
  29. "casing",
  30. "pascal",
  31. "pascal-case",
  32. "pascalcase",
  33. "string"
  34. ],
  35. "verb": {
  36. "related": {
  37. "list": [
  38. "pad-left",
  39. "pad-right",
  40. "word-wrap",
  41. "repeat-string",
  42. "justified"
  43. ]
  44. }
  45. }
  46. }