package.json 663 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "humps",
  3. "version": "2.0.1",
  4. "description": "Underscore-to-camelCase converter (and vice versa) for strings and object keys in JavaScript.",
  5. "main": "humps.js",
  6. "scripts": {
  7. "test": "mocha"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/domchristie/humps.git"
  12. },
  13. "keywords": [
  14. "utils",
  15. "camel",
  16. "case",
  17. "underscore",
  18. "converter",
  19. "strings",
  20. "objects"
  21. ],
  22. "author": "Dom Christie",
  23. "license": "MIT",
  24. "devDependencies": {
  25. "mocha": "^2.2.5"
  26. },
  27. "bugs": {
  28. "url": "https://github.com/domchristie/humps/issues"
  29. },
  30. "homepage": "https://github.com/domchristie/humps"
  31. }