Нема описа

package.json 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "path-case",
  3. "version": "1.1.2",
  4. "description": "Path case a string",
  5. "main": "path-case.js",
  6. "typings": "path-case.d.ts",
  7. "files": [
  8. "path-case.js",
  9. "path-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/path-case.git"
  21. },
  22. "keywords": [
  23. "path",
  24. "case",
  25. "slash"
  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/path-case/issues"
  35. },
  36. "homepage": "https://github.com/blakeembrey/path-case",
  37. "devDependencies": {
  38. "istanbul": "^0.3.0",
  39. "mocha": "^2.1.0",
  40. "pre-commit": "^1.0.1",
  41. "standard": "^3.3.0"
  42. },
  43. "dependencies": {
  44. "sentence-case": "^1.1.2"
  45. }
  46. }