cbd590935d
Also, package.json needs to change its version. Change-Id: I4addcce29c8f4adcccfc1983c3cdcda8c622cfb9
31 lines
900 B
JSON
31 lines
900 B
JSON
{
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"name": "zun-ui",
|
|
"description": "OpenStack Zun-UI",
|
|
"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-chrome-launcher": "1.0.1",
|
|
"karma-cli": "1.0.1",
|
|
"karma-coverage": "1.1.1",
|
|
"karma-jasmine": "1.0.2",
|
|
"karma-ng-html2js-preprocessor": "1.0.0",
|
|
"karma-phantomjs-launcher": "0.2.0",
|
|
"karma-threshold-reporter": "0.1.15",
|
|
"phantomjs": "1.9.17"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "if [ ! -d .tox ] || [ ! -d .tox/py27 ]; then tox -epy27 --notest; 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": {}
|
|
}
|