-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"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": "dist/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",
"dist/jquery.mousewheel.js",
"dist/jquery.mousewheel.min.js",
"README.md",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "node --input-type=module -e \"import { build } from './build/tasks/build.mjs'; build()\"",
"build:clean": "rimraf dist",
"lint": "eslint .",
"release": "release-it",
"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",
"release-it": "18.1.2",
"rimraf": "^6.0.1"
}
}