diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40b878d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ \ No newline at end of file diff --git a/karma.conf.js b/karma.conf.js new file mode 100644 index 0000000..9fc6c13 --- /dev/null +++ b/karma.conf.js @@ -0,0 +1,15 @@ +// Karma configuration +// Generated on %DATE% + +module.exports = function(config) { + config.set({ + frameworks: ['jasmine'], + files: [ + 'components/**/*.js' + ], + exclude: [ + ], + preprocessors: undefined, + browsers: ['Chrome'] + }); +}; \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..f91139e --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "i-want-to-help", + "version": "0.0.0", + "description": "Help app for angular", + "main": "app.js", + "scripts": { + "test": "karma start" + }, + "repository": { + "type": "git", + "url": "https://github.com/ealtenho/i-want-to-help.git" + }, + "author": "ealtenho", + "license": "apache 2", + "bugs": { + "url": "https://github.com/ealtenho/i-want-to-help/issues" + }, + "homepage": "https://github.com/ealtenho/i-want-to-help", + "devDependencies": { + "karma": "^0.12.16", + "karma-chrome-launcher": "^0.1.4", + "karma-jasmine": "^0.1.5" + } +}