diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..235f516 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +node_modules +dist +.tmp +.sass-cache +.idea +*.iml +app/bower_components \ No newline at end of file diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..9ba6ed8 --- /dev/null +++ b/bower.json @@ -0,0 +1,20 @@ +{ + "name": "angular-help-overlay", + "version": "0.1.0", + "homepage": "https://github.com/jordanburke/angular-help-overlay", + "authors": [ + "Jordan Burke <@jordanburke>" + ], + "main": "lib/angular-help-overlay.js", + "description": "Directive for chardin.js instruction overlay", + "keywords": [ + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..3cd94dd --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "angular-help-overlay", + "description": "Angular Wrapper for chardin.js instruction overlay", + "version": "0.1.0", + "homepage": "https://github.com/jordanburke/angular-help-overlay", + "author": { + "name": "Jordan Burke", + "url": "https://github.com/jordanburke/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jordanburke/angular-help-overlay.git" + }, + "licenses": [ + { + "type": "MIT" + } + ], + "dependencies": {}, + "devDependencies": { + "grunt": "~0.4.1", + "grunt-cli": "~0.1.7", + "grunt-contrib-jshint": "latest", + "grunt-contrib-uglify": "~0.2.0", + "grunt-contrib-concat": "~0.2.0", + "grunt-contrib-watch": "latest", + "grunt-contrib-connect": "~0.5.0" + } +}