package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "swap-case",
  3. "version": "1.1.2",
  4. "description": "Swap the case of a string",
  5. "main": "swap-case.js",
  6. "typings": "swap-case.d.ts",
  7. "files": [
  8. "swap-case.js",
  9. "swap-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/swap-case.git"
  21. },
  22. "keywords": [
  23. "swap",
  24. "case",
  25. "reverse",
  26. "switch"
  27. ],
  28. "author": {
  29. "name": "Blake Embrey",
  30. "email": "hello@blakeembrey.com",
  31. "url": "http://blakeembrey.me"
  32. },
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/blakeembrey/swap-case/issues"
  36. },
  37. "homepage": "https://github.com/blakeembrey/swap-case",
  38. "devDependencies": {
  39. "istanbul": "^0.3.0",
  40. "mocha": "^2.2.1",
  41. "pre-commit": "^1.0.6",
  42. "standard": "^3.3.0"
  43. },
  44. "dependencies": {
  45. "lower-case": "^1.1.1",
  46. "upper-case": "^1.1.1"
  47. },
  48. "__npminstall_done": true,
  49. "_from": "swap-case@1.1.2",
  50. "_resolved": "https://registry.npmmirror.com/swap-case/-/swap-case-1.1.2.tgz"
  51. }