Skip to content

Commit d0b926b

Browse files
committed
Normalize package.json and add missing properties.
Also refactor the properties in a more sane way.
1 parent 61d8ef3 commit d0b926b

File tree

1 file changed

+35
-24
lines changed

1 file changed

+35
-24
lines changed

package.json

Lines changed: 35 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,38 @@
11
{
2-
"name" : "jquery-mousewheel",
3-
"version": "3.1.3",
4-
"description" : "A jQuery plugin that adds cross-browser mouse wheel support.",
5-
"main" : "./jquery.mousewheel.js",
6-
"repository" : {
7-
"type" : "git",
8-
"url" : "https://github.com/brandonaaron/jquery-mousewheel.git"
9-
},
10-
"keywords" : [ "jquery", "mouse", "wheel", "event", "mousewheel", "plugin", "browser" ],
11-
"author" : {
12-
"name" : "Brandon Aaron",
13-
"email" : "[email protected]",
14-
"url" : "http://brandonaaron.net/"
15-
},
16-
"licenses": [
17-
{
18-
"type": "MIT",
19-
"url": "https://raw.github.com/brandonaaron/jquery-mousewheel/master/LICENSE.txt"
20-
}
21-
],
22-
"devDependencies": {
23-
"grunt-contrib-jshint": "~0.2.0",
24-
"grunt-contrib-uglify": "~0.1.2",
25-
"grunt": "~0.4.0"
2+
"name": "jquery-mousewheel",
3+
"version": "3.1.3",
4+
"author": "Brandon Aaron <[email protected]> (http://brandonaaron.net/)",
5+
"description": "A jQuery plugin that adds cross-browser mouse wheel support.",
6+
"main": "./jquery.mousewheel.js",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/brandonaaron/jquery-mousewheel.git"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/brandonaaron/jquery-mousewheel/issues"
13+
},
14+
"keywords": [
15+
"jquery",
16+
"mouse",
17+
"wheel",
18+
"event",
19+
"mousewheel",
20+
"plugin",
21+
"browser"
22+
],
23+
"licenses": [
24+
{
25+
"type": "MIT",
26+
"url": "https://raw.github.com/brandonaaron/jquery-mousewheel/master/LICENSE.txt"
2627
}
28+
],
29+
"devDependencies": {
30+
"grunt-contrib-jshint": "~0.4.3",
31+
"grunt-contrib-uglify": "~0.2.0",
32+
"grunt": "~0.4.1"
33+
},
34+
"readmeFilename": "README.markdown",
35+
"directories": {
36+
"test": "test"
37+
}
2738
}

0 commit comments

Comments
 (0)