package.json 759 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "decamelize",
  3. "version": "4.0.0",
  4. "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow",
  5. "license": "MIT",
  6. "repository": "sindresorhus/decamelize",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "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. "decamelize",
  25. "decamelcase",
  26. "camelcase",
  27. "lowercase",
  28. "case",
  29. "dash",
  30. "hyphen",
  31. "string",
  32. "text",
  33. "convert"
  34. ],
  35. "devDependencies": {
  36. "ava": "^2.4.0",
  37. "tsd": "^0.11.0",
  38. "xo": "^0.24.0"
  39. }
  40. }