package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "sentence-case",
  3. "version": "1.1.3",
  4. "description": "Sentence case a string",
  5. "main": "sentence-case.js",
  6. "typings": "sentence-case.d.ts",
  7. "files": [
  8. "sentence-case.js",
  9. "sentence-case.d.ts",
  10. "vendor",
  11. "LICENSE"
  12. ],
  13. "scripts": {
  14. "lint": "standard",
  15. "mocha": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
  16. "test": "npm run build && npm run lint && npm run mocha",
  17. "build": "node build.js",
  18. "stage-vendor": "git add vendor"
  19. },
  20. "standard": {
  21. "ignore": [
  22. "coverage/**"
  23. ]
  24. },
  25. "pre-commit": [
  26. "build",
  27. "stage-vendor",
  28. "test"
  29. ],
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/blakeembrey/sentence-case.git"
  33. },
  34. "keywords": [
  35. "sentence",
  36. "case",
  37. "space"
  38. ],
  39. "author": {
  40. "name": "Blake Embrey",
  41. "email": "hello@blakeembrey.com",
  42. "url": "http://blakeembrey.me"
  43. },
  44. "license": "MIT",
  45. "bugs": {
  46. "url": "https://github.com/blakeembrey/sentence-case/issues"
  47. },
  48. "homepage": "https://github.com/blakeembrey/sentence-case",
  49. "devDependencies": {
  50. "chai": "^1.9.1",
  51. "istanbul": "^0.3.5",
  52. "mocha": "^2.1.0",
  53. "pre-commit": "^1.0.1",
  54. "standard": "^2.3.1",
  55. "xregexp": "^2.0.0"
  56. },
  57. "dependencies": {
  58. "lower-case": "^1.1.1"
  59. },
  60. "__npminstall_done": true,
  61. "_from": "sentence-case@1.1.3",
  62. "_resolved": "https://registry.npmmirror.com/sentence-case/-/sentence-case-1.1.3.tgz"
  63. }