bower.json 494 B

1234567891011121314151617181920212223
  1. {
  2. "name": "humps",
  3. "main": "humps.js",
  4. "version": "2.0.1",
  5. "homepage": "https://github.com/domchristie/humps",
  6. "authors": [
  7. "Dom Christie <christiedom@gmail.com>"
  8. ],
  9. "description": "Underscore-to-camelCase converter (and vice versa) for strings and object keys in JavaScript.",
  10. "moduleType": [
  11. "globals",
  12. "node"
  13. ],
  14. "license": "MIT",
  15. "ignore": [
  16. "**/.*",
  17. "node_modules",
  18. "bower_components",
  19. "app/bower_components",
  20. "test",
  21. "tests"
  22. ]
  23. }