0a01169189
Horizon plugins needs horizon on master branch for our master development and test. Recent changes in CI infra and horizon force to change horizon installation, and added tox_helper.sh as trivial fix. Now, reasonable fix found for horizon plugins, so this patch fixes them. Also, use python3.5 for js jobs. Change-Id: Ibcaf177db21f96e60ee2b222ddd24bc61c3ee9e4
31 lines
981 B
JSON
31 lines
981 B
JSON
{
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"name": "zun-ui",
|
|
"description": "OpenStack Zun-UI",
|
|
"repository": "none",
|
|
"license": "Apache 2.0",
|
|
"devDependencies": {
|
|
"eslint": "3.19.x",
|
|
"eslint-config-openstack": "^4.0.1",
|
|
"eslint-plugin-angular": "3.1.x",
|
|
"jasmine-core": "2.8.x",
|
|
"karma": "1.7.x",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-cli": "1.0.x",
|
|
"karma-coverage": "1.1.x",
|
|
"karma-jasmine": "1.1.x",
|
|
"karma-ng-html2js-preprocessor": "1.0.x",
|
|
"karma-phantomjs-launcher": "1.0.x",
|
|
"karma-threshold-reporter": "0.1.x",
|
|
"phantomjs-prebuilt": "2.1.x"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "if [ ! -d .tox ] || [ ! -d .tox/karma ]; then tox -ekarma --notest; pip install -U -t ./.tox/karma/lib/python3.5/site-packages/ ../horizon; fi",
|
|
"test": "karma start zun_ui/karma.conf.js --single-run",
|
|
"lint": "eslint --no-color zun_ui/static",
|
|
"lintq": "eslint --quiet zun_ui/static"
|
|
},
|
|
"dependencies": {}
|
|
}
|