Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

added package.json #30

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions lazyload.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Filename: lazyload.js
// Timestamp: 2015.12.28-23:36:48 (last modified)

/*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false */

/**
Expand Down Expand Up @@ -36,7 +39,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@static
*/

LazyLoad = (function (doc) {
lazyload = module.exports = (function (doc) {
// -- Private Variables ------------------------------------------------------

// User agent and feature test information.
Expand Down Expand Up @@ -387,4 +390,4 @@ LazyLoad = (function (doc) {
}

};
})(this.document);
})(this.document || {});
16 changes: 16 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "lazyload",
"main": "lazyload",
"version": "2.0.4",
"license" : "MIT",
"readmeFilename": "README.md",
"description": "LazyLoad is a tiny (only 966 bytes minified and gzipped), dependency-free JavaScript utility that makes it super easy to load external JavaScript and CSS files on demand.",

"repository": {
"type": "git",
"url": "https://github.com/rgrove/lazyload.git"
},
"keywords": [
"lazyload"
]
}