package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "throttle-debounce",
  3. "version": "1.1.0",
  4. "description": "Throttle/debounce your functions.",
  5. "main": "index.js",
  6. "typings": "index.d.ts",
  7. "author": "Ivan Nikolić <niksy5@gmail.com> (http://ivannikolic.com/)",
  8. "contributors": [
  9. "Ben Alman (http://benalman.com)"
  10. ],
  11. "license": "MIT",
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "directories": {
  16. "test": "test"
  17. },
  18. "scripts": {
  19. "test": "eslint {index,test/*}.js && karma start --single-run --browsers PhantomJS"
  20. },
  21. "dependencies": {},
  22. "devDependencies": {
  23. "browserify": "^13.0.0",
  24. "eslint": "^1.10.3",
  25. "eslint-config-niksy": "^1.0.6",
  26. "karma": "^0.13.22",
  27. "karma-browserify": "^5.0.4",
  28. "karma-chrome-launcher": "^0.2.3",
  29. "karma-firefox-launcher": "^0.1.7",
  30. "karma-mocha-reporter": "^2.0.2",
  31. "karma-phantomjs-launcher": "^1.0.0",
  32. "karma-qunit": "^0.1.9",
  33. "mocha": "^2.4.5",
  34. "phantomjs-prebuilt": "^2.1.7",
  35. "qunitjs": "^1.23.1",
  36. "watchify": "^3.7.0"
  37. },
  38. "keywords": [
  39. "throttle",
  40. "debounce",
  41. "browserify"
  42. ],
  43. "repository": {
  44. "type": "git",
  45. "url": "git+https://github.com/niksy/throttle-debounce.git"
  46. },
  47. "bugs": {
  48. "url": "https://github.com/niksy/throttle-debounce/issues"
  49. },
  50. "homepage": "https://github.com/niksy/throttle-debounce#readme"
  51. }