64e2e58b4e
This patch update browser from Chrome to Firefox in karma.conf.js becuase nodejs fails with Chrome browser as not able to access some URL. So let's switch to Firefox browser now then we can use Chrome browser in future once this issue is resolved. Change-Id: Id5186f16656e0671dda7ab91062c104b2c08758f Signed-off-by: Nicolas Bock <nicolas.bock@canonical.com>
27 lines
738 B
JSON
27 lines
738 B
JSON
{
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"name": "designate-dashboard",
|
|
"description": "Designate Dashboard",
|
|
"repository": "none",
|
|
"license": "Apache 2.0",
|
|
"devDependencies": {
|
|
"eslint": "1.10.3",
|
|
"eslint-config-openstack": "1.2.4",
|
|
"jasmine-core": "2.4.1",
|
|
"karma": "~1.1.2",
|
|
"karma-firefox-launcher": "2.1.0",
|
|
"karma-cli": "1.0.1",
|
|
"karma-jasmine": "1.0.2",
|
|
"karma-ng-html2js-preprocessor": "1.0.0"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "if [ ! -d .tox/py38 ]; then tox -epy38 --notest; fi",
|
|
"lint": "eslint --no-color designatedashboard/static",
|
|
"lintq": "eslint --quiet designatedashboard/static",
|
|
"test": "karma start karma.conf.js --single-run"
|
|
},
|
|
"dependencies": {}
|
|
}
|
|
|