jquery-mousewheel
Version:
A jQuery plugin that adds cross-browser mouse wheel support.
64 lines (63 loc) • 1.97 kB
JSON
{
"name": "jquery-mousewheel",
"version": "3.2.2",
"author": {
"name": "jQuery Foundation and other contributors",
"url": "https://github.com/jquery/jquery-mousewheel/blob/master/AUTHORS.txt"
},
"description": "A jQuery plugin that adds cross-browser mouse wheel support.",
"license": "MIT",
"homepage": "https://github.com/jquery/jquery-mousewheel",
"main": "./jquery.mousewheel.js",
"repository": {
"type": "git",
"url": "https://github.com/jquery/jquery-mousewheel.git"
},
"bugs": {
"url": "https://github.com/jquery/jquery-mousewheel/issues"
},
"keywords": [
"jquery",
"mouse",
"wheel",
"event",
"mousewheel",
"jquery-plugin",
"browser"
],
"files": [
"ChangeLog.md",
"jquery.mousewheel.js",
"jquery.mousewheel.min.js",
"README.md",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run minify",
"minify": "node --input-type=module -e \"import { minify } from './build/minify.mjs'; minify( { dir: '.', filename: 'jquery.mousewheel.js' } )\"",
"lint": "eslint .",
"test:browser": "npm run build && npm run test:unit -- -b chrome -b firefox --headless",
"test:chrome": "npm run build && npm run test:unit -- -v -b chrome --headless",
"test:edge": "npm run build && npm run test:unit -- -v -b edge --headless",
"test:firefox": "npm run build && npm run test:unit -- -v -b firefox --headless",
"test:ie": "npm run build && npm run test:unit -- -v -b ie",
"test:safari": "npm run build && npm run test:unit -- -b safari",
"test:unit": "jtr",
"test": "npm run build && npm run lint && npm run test:browser"
},
"dependencies": {
"jquery": ">=1.2.6"
},
"devDependencies": {
"@swc/core": "^1.11.8",
"eslint": "9.22.0",
"eslint-config-jquery": "3.0.2",
"globals": "^16.0.0",
"jquery-test-runner": "0.2.6",
"qunit": "2.24.1",
"requirejs": "2.3.7"
}
}