package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "title-case",
  3. "version": "2.1.1",
  4. "description": "Title case a string",
  5. "main": "title-case.js",
  6. "typings": "title-case.d.ts",
  7. "files": [
  8. "title-case.js",
  9. "title-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/title-case.git"
  21. },
  22. "keywords": [
  23. "title",
  24. "case"
  25. ],
  26. "author": {
  27. "name": "Blake Embrey",
  28. "email": "hello@blakeembrey.com",
  29. "url": "http://blakeembrey.me"
  30. },
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/blakeembrey/title-case/issues"
  34. },
  35. "homepage": "https://github.com/blakeembrey/title-case",
  36. "devDependencies": {
  37. "istanbul": "^0.4.3",
  38. "mocha": "^3.0.0",
  39. "standard": "^9.0.2"
  40. },
  41. "dependencies": {
  42. "no-case": "^2.2.0",
  43. "upper-case": "^1.0.3"
  44. }
  45. }