Added karma-cli to package.json

Turns out that npm runs a little like venv's do, in that it can
install executables in its own path. This adds the karma-cli
executable into the npm path, and removes additional extraneous
content from the package.json file.

Change-Id: Ib25553956a9757ecbb1ee7ce722f3646ededc035
This commit is contained in:
Michael Krotscheck 2015-06-03 15:40:06 -07:00
parent e819dac5c9
commit 4ffd55c7c9
1 changed files with 3 additions and 2 deletions

View File

@ -9,14 +9,15 @@
"jasmine-core": "2.2.0",
"karma": "0.12.31",
"karma-chrome-launcher": "0.1.8",
"karma-cli": "0.0.4",
"karma-coverage": "0.3.1",
"karma-jasmine": "0.3.5",
"karma-ng-html2js-preprocessor": "0.1.2",
"karma-phantomjs-launcher": "0.2.0",
"phantomjs": "^1.9.17"
"phantomjs": "1.9.17"
},
"scripts": {
"test": "node node_modules/karma/bin/karma start horizon/karma.conf.js --single-run && node node_modules/karma/bin/karma start openstack_dashboard/karma.conf.js --single-run"
"test": "karma start horizon/karma.conf.js --single-run && karma start openstack_dashboard/karma.conf.js --single-run"
},
"dependencies": {}
}