package.json 1008 B

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