{ "name": "d3-brush", "version": "3.0.0", "description": "Select a one- or two-dimensional region using the mouse or touch.", "homepage": "https://d3js.org/d3-brush/", "repository": { "type": "git", "url": "https://github.com/d3/d3-brush.git" }, "keywords": [ "d3", "d3-module", "brush", "interaction" ], "license": "ISC", "author": { "name": "Mike Bostock", "url": "https://bost.ocks.org/mike" }, "type": "module", "files": [ "dist/**/*.js", "src/**/*.js" ], "module": "src/index.js", "main": "src/index.js", "jsdelivr": "dist/d3-brush.min.js", "unpkg": "dist/d3-brush.min.js", "exports": { "umd": "./dist/d3-brush.min.js", "default": "./src/index.js" }, "dependencies": { "d3-dispatch": "1 - 3", "d3-drag": "2 - 3", "d3-interpolate": "1 - 3", "d3-selection": "3", "d3-transition": "3" }, "devDependencies": { "eslint": "7", "mocha": "9", "rollup": "2", "rollup-plugin-terser": "7" }, "scripts": { "test": "mocha 'test/**/*-test.js' && eslint src test", "prepublishOnly": "rm -rf dist && yarn test && rollup -c && git push", "postpublish": "git push --tags && cd ../d3.github.com && git pull && cp ../${npm_package_name}/dist/${npm_package_name}.js ${npm_package_name}.v${npm_package_version%%.*}.js && cp ../${npm_package_name}/dist/${npm_package_name}.min.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git add ${npm_package_name}.v${npm_package_version%%.*}.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git commit -m \"${npm_package_name} ${npm_package_version}\" && git push && cd -" }, "engines": { "node": ">=12" } }