package.json 670 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "debounce",
  3. "description": "Creates and returns a new debounced version of the passed function that will postpone its execution until after wait milliseconds have elapsed since the last time it was invoked",
  4. "version": "1.2.1",
  5. "repository": "git://github.com/component/debounce",
  6. "main": "index.js",
  7. "scripts": {
  8. "test": "minijasminenode test.js"
  9. },
  10. "license": "MIT",
  11. "keywords": [
  12. "function",
  13. "throttle",
  14. "invoke"
  15. ],
  16. "devDependencies": {
  17. "minijasminenode": "^1.1.1",
  18. "sinon": "^1.17.7",
  19. "mocha": "*",
  20. "should": "*"
  21. },
  22. "component": {
  23. "scripts": {
  24. "debounce/index.js": "index.js"
  25. }
  26. }
  27. }