b89a1e5177
This patch removes hard-coded Python path in karma.conf.js to fix the npm jobs because now these npm jobs run on debian-bullseye and py38 are not available there. Change-Id: I7474bfc60f503ab5b4a278e0f835cc088ec911a7
27 lines
776 B
JSON
27 lines
776 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",
|
|
"eslint-plugin-angular": "^1.0.1",
|
|
"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/npm ]; then tox -e npm --notest; fi",
|
|
"lint": "eslint --no-color designatedashboard/static",
|
|
"lintq": "eslint --quiet designatedashboard/static",
|
|
"test": "karma start karma.conf.js --single-run"
|
|
},
|
|
"dependencies": {}
|
|
}
|