-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
28 lines (28 loc) · 1.61 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
{
"name": "jquery-cropbox",
"version": "0.1.9",
"author": "Alex Cornejo",
"main": "jquery.cropbox.js",
"devDependencies": {
"uglifycss": "0.0.7",
"uglify-js": "~2.4.0",
"jshint": "~2.3.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/acornejo/jquery-cropbox.git",
"web": "https://github.com/acornejo/jquery-cropbox"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"scripts": {
"prepublish": "./node_modules/.bin/uglifyjs -o jquery.cropbox.min.js jquery.cropbox.js; ./node_modules/.bin/uglifycss jquery.cropbox.css > jquery.cropbox.min.css",
"pretest": "./node_modules/.bin/jshint -e 'js,json' --exclude node_modules ."
},
"description": "jQuery plugin for in-place image cropping (zoom & pan, as opposed to select and drag).\n \n This plugin depends only on jQuery. If either `Hammer.js` or `jquery.hammer.js` is\n loaded, the cropbox plugin will support gestures for panning and zooming\n the cropbox. Similary, if the `jquery.mousewheel.js` plugin is loaded, then the\n cropbox plugin will support zoom in & out using the mousewheel. All\n dependencies on third party libraries (other than jQuery) are strictly\n optional. Support for CommonJS and AMD loading is built in.\n \n In browsers that support the HTML5 FIle API and Canvas API, the cropbox\n plugin provides mehtods to crop the image on the client and obtain the\n resulting cropped image as a Data URL or a binary blob to upload it to\n the server.\n \n Check out the plugin in action here http://acornejo.github.io/jquery-cropbox/"
}