Nav apraksta

package.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "camel-case",
  3. "version": "1.2.2",
  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-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": {
  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.3.0",
  49. "mocha": "^2.2.1",
  50. "pre-commit": "^1.0.6",
  51. "standard": "^3.3.0"
  52. },
  53. "dependencies": {
  54. "sentence-case": "^1.1.1",
  55. "upper-case": "^1.1.1"
  56. }
  57. }