package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "title-case",
  3. "version": "1.1.2",
  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.3.0",
  38. "mocha": "^2.2.1",
  39. "pre-commit": "^1.0.6",
  40. "standard": "^3.3.0"
  41. },
  42. "dependencies": {
  43. "sentence-case": "^1.1.1",
  44. "upper-case": "^1.0.3"
  45. },
  46. "__npminstall_done": true,
  47. "_from": "title-case@1.1.2",
  48. "_resolved": "https://registry.npmmirror.com/title-case/-/title-case-1.1.2.tgz"
  49. }