6d473eed7d
With the update of some linting packages, several style fixes were needed to conform with the updated style guidelines. Change-Id: If73036a6d4a3a2f6e93b15d1fa6ed3d253fdc7b1
27 lines
960 B
JSON
27 lines
960 B
JSON
{
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"name": "refstack-ui",
|
|
"description": "A user interface for RefStack",
|
|
"license": "Apache2",
|
|
"devDependencies": {
|
|
"bower": "1.7.5",
|
|
"eslint": "^3.0.0",
|
|
"eslint-config-openstack": "4.0.1",
|
|
"eslint-plugin-angular": "1.4.0",
|
|
"jasmine-core": "2.8.0",
|
|
"karma": "^1.7.1",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-cli": "1.0.1",
|
|
"karma-jasmine": "^1.1.0"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "bower install --config.interactive=false",
|
|
"prestart": "npm install",
|
|
"pretest": "npm install",
|
|
"test": "if [ -z $CHROME_BIN ];then export CHROME_BIN=/usr/bin/chromium-browser;fi && karma start ./refstack-ui/tests/karma.conf.js --single-run",
|
|
"test-auto-watch": "if [ -z $CHROME_BIN ];then export CHROME_BIN=/usr/bin/chromium-browser;fi && karma start ./refstack-ui/tests/karma.conf.js --auto-watch",
|
|
"lint": "eslint -c ./.eslintrc --no-color ./refstack-ui"
|
|
}
|
|
}
|