package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "change-case",
  3. "version": "3.1.0",
  4. "description": "Convert a string between camelCase, PascalCase, Title Case, snake_case and more.",
  5. "main": "change-case.js",
  6. "typings": "change-case.d.ts",
  7. "files": [
  8. "change-case.js",
  9. "change-case.d.ts",
  10. "LICENSE"
  11. ],
  12. "scripts": {
  13. "lint": "standard",
  14. "test-std": "mocha -- -R spec --bail",
  15. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
  16. "test": "npm run lint && npm run test-cov"
  17. },
  18. "repository": "https://github.com/blakeembrey/change-case",
  19. "keywords": [
  20. "camel",
  21. "pascal",
  22. "title",
  23. "case",
  24. "lower",
  25. "upper",
  26. "param",
  27. "kebab",
  28. "hyphen",
  29. "dot",
  30. "path",
  31. "constant",
  32. "cases",
  33. "check"
  34. ],
  35. "author": {
  36. "name": "Blake Embrey",
  37. "email": "hello@blakeembrey.com",
  38. "url": "http://blakeembrey.me"
  39. },
  40. "license": "MIT",
  41. "devDependencies": {
  42. "istanbul": "^0.4.3",
  43. "mocha": "^5.0.0",
  44. "standard": "^12.0.1"
  45. },
  46. "dependencies": {
  47. "camel-case": "^3.0.0",
  48. "constant-case": "^2.0.0",
  49. "dot-case": "^2.1.0",
  50. "header-case": "^1.0.0",
  51. "is-lower-case": "^1.1.0",
  52. "is-upper-case": "^1.1.0",
  53. "lower-case": "^1.1.1",
  54. "lower-case-first": "^1.0.0",
  55. "no-case": "^2.3.2",
  56. "param-case": "^2.1.0",
  57. "pascal-case": "^2.0.0",
  58. "path-case": "^2.1.0",
  59. "sentence-case": "^2.1.0",
  60. "snake-case": "^2.1.0",
  61. "swap-case": "^1.1.0",
  62. "title-case": "^2.1.0",
  63. "upper-case": "^1.1.1",
  64. "upper-case-first": "^1.1.0"
  65. }
  66. }