package.json 1012 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "assert-options",
  3. "version": "0.8.2",
  4. "description": "Generic options parameter handling.",
  5. "main": "dist/src/index.js",
  6. "types": "dist/src/index.d.ts",
  7. "scripts": {
  8. "test": "mocha --timeout 10000 --import=tsx test/**/*.spec.ts --exit"
  9. },
  10. "files": [
  11. "dist/src",
  12. "dist/index.js"
  13. ],
  14. "homepage": "https://github.com/vitaly-t/assert-options",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/vitaly-t/assert-options.git"
  18. },
  19. "bugs": {
  20. "url": "https://github.com/vitaly-t/assert-options/issues",
  21. "email": "vitaly.tomilov@gmail.com"
  22. },
  23. "keywords": [
  24. "assert",
  25. "options"
  26. ],
  27. "author": {
  28. "name": "Vitaly Tomilov",
  29. "email": "vitaly.tomilov@gmail.com"
  30. },
  31. "license": "MIT",
  32. "engines": {
  33. "node": ">=10.0.0"
  34. },
  35. "devDependencies": {
  36. "@types/chai": "5.0.0",
  37. "@types/mocha": "10.0.9",
  38. "@types/node": "22.7.5",
  39. "chai": "5.1.1",
  40. "mocha": "10.7.3",
  41. "tsx": "4.19.1",
  42. "typescript": "5.6.3"
  43. }
  44. }