package.json 691 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "just-debounce",
  3. "version": "1.1.0",
  4. "description": "a simple debounce with no dependencies or crazy defaults",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test.js && npm run lint",
  8. "lint": "eslint ."
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/hayes/just-debounce.git"
  13. },
  14. "keywords": [
  15. "debounce"
  16. ],
  17. "author": "Michael Hayes",
  18. "license": "MIT",
  19. "bugs": {
  20. "url": "https://github.com/hayes/just-debounce/issues"
  21. },
  22. "homepage": "https://github.com/hayes/just-debounce",
  23. "devDependencies": {
  24. "eslint": "^7.20.0",
  25. "eslint-plugin-prettier": "^3.3.1",
  26. "prettier": "^2.2.1",
  27. "tape": "^5.1.1"
  28. }
  29. }