package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "param-case",
  3. "version": "2.1.1",
  4. "description": "Param case a string",
  5. "main": "param-case.js",
  6. "typings": "param-case.d.ts",
  7. "files": [
  8. "param-case.js",
  9. "param-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/param-case.git"
  21. },
  22. "keywords": [
  23. "param",
  24. "case",
  25. "dash",
  26. "hyphen"
  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/param-case/issues"
  36. },
  37. "homepage": "https://github.com/blakeembrey/param-case",
  38. "devDependencies": {
  39. "istanbul": "^0.4.3",
  40. "mocha": "^3.2.0",
  41. "standard": "^9.0.1"
  42. },
  43. "dependencies": {
  44. "no-case": "^2.2.0"
  45. }
  46. }