{ "name": "throttle-debounce", "version": "2.1.0", "description": "Throttle and debounce functions.", "main": "dist/index.cjs.js", "module": "dist/index.esm.js", "author": "Ivan Nikolić (http://ivannikolic.com)", "contributors": [ "Ben Alman (http://benalman.com)" ], "license": "MIT", "files": [ "dist/index.cjs.js", "dist/index.esm.js", "dist/", "LICENSE.md", "README.md" ], "sideEffects": false, "directories": { "test": "test" }, "scripts": { "build": "rollup --config rollup.config.js", "lint": "eslint '{index,lib/**/*,test/**/*}.js'", "prepublish": "npm run build", "prepublishOnly": "npm run build", "release": "np", "test": "npm run lint && npm run test:automated", "test:automated": "BABEL_ENV=test karma start", "test:automated:local": "BABEL_ENV=test karma start --local", "test:automated:local:watch": "npm run test:automated:local -- --auto-watch --no-single-run" }, "dependencies": {}, "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.2.2", "@babel/plugin-transform-object-assign": "^7.2.0", "@babel/plugin-transform-runtime": "^7.2.0", "@babel/runtime": "^7.2.0", "babel-loader": "^8.0.4", "babel-preset-niksy": "^4.1.0", "eslint": "^5.4.0", "eslint-config-niksy": "^6.1.0", "eslint-plugin-extend": "^0.1.1", "eslint-plugin-import": "^2.13.0", "eslint-plugin-mocha": "^5.1.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-promise": "^4.0.0", "eslint-plugin-react": "^7.9.1", "eslint-plugin-unicorn": "^5.0.0", "esm": "^3.0.51", "karma": "^1.1.0", "karma-chrome-launcher": "^1.0.1", "karma-firefox-launcher": "^0.1.7", "karma-mocha-reporter": "^2.2.5", "karma-qunit": "^0.1.9", "karma-sourcemap-loader": "^0.3.7", "karma-webpack": "^3.0.0", "minimist": "^1.2.0", "np": "^3.0.4", "qunitjs": "^1.23.1", "rollup": "^1.0.0", "rollup-plugin-babel": "^4.2.0", "webpack": "^4.12.0" }, "engines": { "node": ">=8" }, "keywords": [ "debounce", "throttle" ], "repository": { "type": "git", "url": "git+https://github.com/niksy/throttle-debounce.git" }, "bugs": { "url": "https://github.com/niksy/throttle-debounce/issues" }, "homepage": "https://github.com/niksy/throttle-debounce#readme" }