package.json 907 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "pluralize",
  3. "version": "8.0.0",
  4. "description": "Pluralize and singularize any word",
  5. "main": "pluralize.js",
  6. "files": [
  7. "pluralize.js"
  8. ],
  9. "scripts": {
  10. "lint": "semistandard",
  11. "test-spec": "mocha -R spec --bail",
  12. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
  13. "test": "npm run lint && npm run test-cov"
  14. },
  15. "repository": "https://github.com/blakeembrey/pluralize.git",
  16. "keywords": [
  17. "plural",
  18. "plurals",
  19. "pluralize",
  20. "singular",
  21. "singularize",
  22. "inflection"
  23. ],
  24. "author": {
  25. "name": "Blake Embrey",
  26. "email": "hello@blakeembrey.com",
  27. "url": "http://blakeembrey.me"
  28. },
  29. "license": "MIT",
  30. "readmeFilename": "Readme.md",
  31. "engines": {
  32. "node": ">=4"
  33. },
  34. "devDependencies": {
  35. "chai": "^4.0.0",
  36. "istanbul": "^0.4.5",
  37. "mocha": "^5.0.0",
  38. "semistandard": "^12.0.0"
  39. }
  40. }