diff --git a/README.md b/README.md index 508e9c5..b7871bc 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,20 @@ requirejs( [ }); ``` +## Browserify + +imagesLoaded works with [Browserify](http://browserify.org/). + +``` bash +npm install imagesloaded --save +``` + +``` +var imagesLoaded = require('imagesloaded'); + +imagesLoaded( elem, function() {...} ); +``` + ## Contributors This project has a [storied legacy](https://github.com/desandro/imagesloaded/graphs/contributors). Its current incarnation was developed by [Tomas Sardyha @Darsain](http://darsa.in/) and [David DeSandro @desandro](http://desandro.com). diff --git a/imagesloaded.jquery.json b/imagesloaded.jquery.json deleted file mode 100644 index 11e6c5a..0000000 --- a/imagesloaded.jquery.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "name": "imagesloaded", - "version": "3.1.8", - "title": "imagesLoaded", - "description": "JavaScript is all like 'You images done yet or what?'", - "keywords": [ - "image", - "loading" - ], - "author": { - "name": "David DeSandro", - "url": "http://desandro.com" - }, - "maintainers": [ - { - "name": "Tomas Sardyha", - "url": "http://darsa.in" - }, - { - "name": "David DeSandro", - "url": "http://desandro.com" - } - ], - "licenses": [ - { - "type": "MIT", - "url": "http://desandro.mit-license.org/" - } - ], - "bugs": "https://github.com/desandro/imagesloaded/issues", - "homepage": "https://imagesloaded.desandro.com", - "docs": "https://imagesloaded.desandro.com", - "download": "http://imagesloaded.desandro.com", - "dependencies": { - "jquery": ">=1.7" - } -} diff --git a/package.json b/package.json index 9d7450d..5b31fb8 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,9 @@ "keywords": [ "images", "loaded", - "ui" + "ui", + "dom", + "jquery-plugin" ], "license": "MIT" }