diff --git a/.gitignore b/.gitignore index 23f8292..242d0fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ *.psd *~ +node_modules/ +npm-debug.log diff --git a/package.json b/package.json new file mode 100644 index 0000000..4dae941 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "jquery-sticky", + "version": "1.0.3", + "description": "Sticky is a jQuery plugin that gives you the ability to make any element on your page always stay visible.", + "main": "jquery.sticky.js", + "files": [ + "jquery.sticky.js" + ], + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": "garand/sticky", + "keywords": [ + "dom", + "jquery-plugin", + "ui" + ], + "author": "Anthony Garand", + "license": "(MIT OR GPL-3.0)", + "bugs": { + "url": "https://github.com/garand/sticky/issues" + }, + "homepage": "https://github.com/garand/sticky#readme", + "dependencies": { + "jquery": "*" + } +}