package.json 748 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "prototype-hooks",
  3. "version": "4.0.0",
  4. "description": "add before and after hooks to any JavaScript prototype chain",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "tap test/*.js",
  8. "cover": "nyc npm test",
  9. "complexity": "plato -r -d ./reports/complexity index.js",
  10. "lint": "jshint ."
  11. },
  12. "author": "Marak <support@marak.com>",
  13. "license": "MIT",
  14. "devDependencies": {
  15. "nyc": "^10.1.2",
  16. "plato": "^1.7.0",
  17. "tap": "^9.0.3",
  18. "tape": "^4.6.3"
  19. },
  20. "nyc": {
  21. "all": false,
  22. "exclude": [
  23. "coverage",
  24. "public",
  25. "reports",
  26. "test",
  27. "node_modules"
  28. ],
  29. "reporter": [
  30. "html",
  31. "lcov",
  32. "clover"
  33. ],
  34. "report-dir": "./reports/coverage"
  35. }
  36. }