package.json 651 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "kareem",
  3. "version": "3.0.0",
  4. "description": "Next-generation take on pre/post function hooks",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "eslint .",
  8. "test": "mocha ./test/*",
  9. "test-coverage": "nyc --reporter lcov mocha ./test/*",
  10. "docs": "node ./docs.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/mongoosejs/kareem.git"
  15. },
  16. "devDependencies": {
  17. "acquit": "1.x",
  18. "acquit-ignore": "0.2.x",
  19. "eslint": "8.20.0",
  20. "mocha": "9.2.0",
  21. "nyc": "15.1.0"
  22. },
  23. "author": "Valeri Karpov <val@karpov.io>",
  24. "license": "Apache-2.0",
  25. "engines": {
  26. "node": ">=18.0.0"
  27. }
  28. }