package.json 785 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "tinyspy",
  3. "version": "1.1.1",
  4. "type": "module",
  5. "main": "./dist/index.cjs",
  6. "module": "./dist/index.js",
  7. "types": "./dist/index.d.ts",
  8. "exports": {
  9. "types": "./dist/index.d.ts",
  10. "import": "./dist/index.js",
  11. "require": "./dist/index.cjs",
  12. "default": "./dist/index.cjs"
  13. },
  14. "files": [
  15. "dist/**"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/tinylibs/tinyspy.git"
  20. },
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/tinylibs/tinyspy/issues"
  24. },
  25. "homepage": "https://github.com/tinylibs/tinyspy#readme",
  26. "keywords": [
  27. "spy",
  28. "mock",
  29. "typescript",
  30. "method"
  31. ],
  32. "engines": {
  33. "node": ">=14.0.0"
  34. },
  35. "scripts": {
  36. "publish": "npm run build && clean-publish"
  37. }
  38. }