package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "pluralize",
  3. "version": "7.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": "^3.2.0",
  38. "semistandard": "^11.0.0"
  39. },
  40. "__npminstall_done": "Thu Dec 24 2020 20:20:56 GMT+0800 (CST)",
  41. "_from": "pluralize@7.0.0",
  42. "_resolved": "https://registry.npm.taobao.org/pluralize/download/pluralize-7.0.0.tgz"
  43. }