forked from jquery/jquery-mousewheel
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "jquery-mousewheel",
"version": "3.1.15",
"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",
"README.md",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint jquery.mousewheel.js",
"karma": "karma start test/karma.conf.js",
"test": "echo Use karma for unit tests or load test/index.html in a browser."
},
"dependencies": {
"jquery": ">=3.7.1"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-jquery": "3.0.2",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-firefox-launcher": "2.1.3",
"karma-qunit": "4.2.0",
"karma-requirejs": "1.1.0",
"qunit": "2.20.1",
"requirejs": "2.3.6"
}
}