-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "jquery-mousewheel",
"version": "3.1.13",
"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": {
"build": "npm run lint && npm run minify",
"minify": "uglifyjs -m -c --comments /Copyright/ -o jquery.mousewheel.min.js -- jquery.mousewheel.js",
"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": ">=1.7.2"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-jquery": "^3.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-qunit": "^4.1.2",
"karma-requirejs": "^1.1.0",
"qunit": "^2.14.1",
"requirejs": "^2.3.6",
"uglify-js": "^3.13.3"
}
}