From 6b62d711eae3427015b77ffe66581670fa625f54 Mon Sep 17 00:00:00 2001 From: Eddie Monge Date: Mon, 23 Sep 2013 11:47:56 -0700 Subject: [PATCH] add package.json file to manage dependencies --- package.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..296ef19 --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "angular-local-storage", + "version": "0.0.1", + "description": "An Angular module that gives you access to the browsers local storage", + "main": "localStorageModule.js", + "scripts": { + "test": "" + }, + "repository": { + "type": "git", + "url": "https://github.com/grevory/angular-local-storage.git" + }, + "keywords": [ + "AngularJS", + "local", + "storage" + ], + "author": "grevory ", + "license": "MIT", + "bugs": { + "url": "https://github.com/grevory/angular-local-storage/issues" + } +}