package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "process-warning",
  3. "version": "2.3.2",
  4. "description": "A small utility for creating warnings and emitting them.",
  5. "main": "index.js",
  6. "type": "commonjs",
  7. "types": "types/index.d.ts",
  8. "scripts": {
  9. "lint": "standard",
  10. "lint:fix": "standard --fix",
  11. "test": "npm run test:unit && npm run test:jest && npm run test:typescript",
  12. "test:jest": "jest jest.test.js",
  13. "test:unit": "tap",
  14. "test:typescript": "tsd"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/fastify/process-warning.git"
  19. },
  20. "keywords": [
  21. "fastify",
  22. "error",
  23. "warning",
  24. "utility",
  25. "plugin",
  26. "emit",
  27. "once"
  28. ],
  29. "author": "Tomas Della Vedova",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/fastify/fastify-warning/issues"
  33. },
  34. "homepage": "https://github.com/fastify/fastify-warning#readme",
  35. "devDependencies": {
  36. "benchmark": "^2.1.4",
  37. "jest": "^29.0.1",
  38. "standard": "^17.0.0",
  39. "tap": "^16.3.0",
  40. "tsd": "^0.29.0"
  41. }
  42. }