package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "camel-case",
  3. "version": "3.0.0",
  4. "description": "Camel case a string",
  5. "main": "camel-case.js",
  6. "typings": "camel-case.d.ts",
  7. "files": [
  8. "camel-case.js",
  9. "camel-case.d.ts",
  10. "LICENSE"
  11. ],
  12. "scripts": {
  13. "lint": "standard",
  14. "test-spec": "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": {
  19. "type": "git",
  20. "url": "git://github.com/blakeembrey/camel-case.git"
  21. },
  22. "keywords": [
  23. "camel",
  24. "case",
  25. "camelcase",
  26. "camel-case",
  27. "dash",
  28. "hyphen",
  29. "dot",
  30. "underscore",
  31. "lodash",
  32. "separator",
  33. "string",
  34. "text",
  35. "convert"
  36. ],
  37. "author": {
  38. "name": "Blake Embrey",
  39. "email": "hello@blakeembrey.com",
  40. "url": "http://blakeembrey.me"
  41. },
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/blakeembrey/camel-case/issues"
  45. },
  46. "homepage": "https://github.com/blakeembrey/camel-case",
  47. "devDependencies": {
  48. "istanbul": "^0.4.3",
  49. "mocha": "^2.2.1",
  50. "standard": "^7.1.2"
  51. },
  52. "dependencies": {
  53. "no-case": "^2.2.0",
  54. "upper-case": "^1.1.1"
  55. }
  56. }