f3a7b9ea01
Karma and eslint won't run because dependencies in package.json are out of date Update package.json. Update .eslintrc to reflect renamed rules. Correct overlooked issues in code. Closes-Bug: #1538264 Change-Id: Ia0231f44b36cf5263ed5efbbdfa42ad9cf63c4a0
29 lines
825 B
JSON
29 lines
825 B
JSON
{
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"name": "neutron-lbaas-dashboard",
|
|
"description": "Neutron LBaaS v2 Dashboard",
|
|
"repository": "none",
|
|
"license": "Apache 2.0",
|
|
"devDependencies": {
|
|
"eslint": "1.2.1",
|
|
"eslint-config-openstack": "1.2.3",
|
|
"eslint-plugin-angular": "0.15.0",
|
|
"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",
|
|
"karma-threshold-reporter": "0.1.15",
|
|
"phantomjs": "1.9.17"
|
|
},
|
|
"scripts": {
|
|
"test": "karma start neutron_lbaas_dashboard/karma.conf.js --single-run",
|
|
"lint": "eslint --no-color neutron_lbaas_dashboard/static"
|
|
},
|
|
"dependencies": {}
|
|
}
|