diff --git a/README.md b/README.md index 4170beb..001f46a 100644 --- a/README.md +++ b/README.md @@ -303,7 +303,7 @@ Official Youtube DATA API (v3) [reference documentation](https://developers.goog ## Development -Installing the Karma test runner with `npm install karma -g`, then run the tests with `karma start`. +Installing the npm list `npm install`, then run the tests with `npm test`. ## Copyright and License diff --git a/bower.json b/bower.json index fc0cb73..a485874 100644 --- a/bower.json +++ b/bower.json @@ -8,9 +8,7 @@ "components" ], "devDependencies": { - "angular": "~1.3.12", - "angular-mocks": "~1.3.12", - "angular-mocks-unstable": "~1.1.5", - "angular-unstable": "1.1.5" + "angular": "~1.4.7", + "angular-mocks": "~1.4.7" } } diff --git a/package.json b/package.json new file mode 100644 index 0000000..744d509 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "nggapi", + "version": "0.0.0", + "description": "ngGAPI is a [Google APIs](https://code.google.com/apis/console/) client for AngularJS.", + "directories": { + "test": "test" + }, + "scripts": { + "test": "./node_modules/karma/bin/karma start" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/christiansmith/ngGAPI.git" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/christiansmith/ngGAPI/issues" + }, + "homepage": "https://github.com/christiansmith/ngGAPI#readme", + "devDependencies": { + "jasmine-core": "^2.3.4", + "karma": "^0.13.15", + "karma-chrome-launcher": "^0.2.1", + "karma-coffee-preprocessor": "^0.3.0", + "karma-jasmine": "^0.3.6", + "karma-phantomjs-launcher": "^0.2.1", + "phantomjs": "^1.9.18" + } +}