From 02fc029b80d4d88d8acc8b4f9b9048c58038780b Mon Sep 17 00:00:00 2001 From: SBats Date: Fri, 8 Dec 2017 13:47:47 -0500 Subject: [PATCH] Add package.json --- .gitignore | 4 ++++ package.json | 26 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dc230e9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/log/*.* +/tmp +.DS_Store +logfile diff --git a/package.json b/package.json new file mode 100644 index 0000000..9b8e8fb --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "angular-sticky", + "version": "1.0.2", + "description": "AngularJS directive to cause elements to stick to the top of the page when scrolling past", + "main": "sticky.js", + "directories": { + "example": "examples" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/chronogolf/angular-sticky.git" + }, + "keywords": [ + "angular", + "sticky" + ], + "author": "Jamedjo", + "license": "MIT", + "bugs": { + "url": "https://github.com/chronogolf/angular-sticky/issues" + }, + "homepage": "https://github.com/chronogolf/angular-sticky#readme" +}