package.json 702 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "just-debounce",
  3. "version": "1.0.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": "^0.22.1",
  25. "eslint-config-standard": "^2.0.0",
  26. "eslint-plugin-react": "^2.4.0",
  27. "tape": "^4.0.0"
  28. }
  29. }