d2a492ec15
* Updated PyOpenSSL package requirement as the version (0.13) we were using before is causing issues in the new gate images being used as this version won't build against newer versions of OpenSSL. * Removed PhantomJS as a testing requirement. PhantomJS has setup issues and causes npm jobs to consistently fail. Change-Id: I2d7b293da2c00f22c96ab75d8ee24214dfe7c99c
30 lines
942 B
JSON
30 lines
942 B
JSON
{
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"name": "refstack-ui",
|
|
"description": "A user interface for RefStack",
|
|
"license": "Apache2",
|
|
"devDependencies": {
|
|
"bower": "1.3.12",
|
|
"eslint": "1.5.1",
|
|
"eslint-config-openstack": "1.2.1",
|
|
"eslint-plugin-angular": "0.12.0",
|
|
"http-server": "^0.6.1",
|
|
"karma": "^0.12.23",
|
|
"karma-chrome-launcher": "^0.1.5",
|
|
"karma-cli": "0.0.4",
|
|
"karma-firefox-launcher": "^0.1.3",
|
|
"karma-jasmine": "^0.2.2",
|
|
"protractor": "~1.0.0"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "bower install --config.interactive=false",
|
|
"prestart": "npm install",
|
|
"start": "http-server ./refstack-ui/app -a 0.0.0.0 -p 8080",
|
|
"pretest": "npm install",
|
|
"test": "karma start ./refstack-ui/tests/karma.conf.js --single-run",
|
|
"test-auto-watch": "karma start ./refstack-ui/tests/karma.conf.js --auto-watch",
|
|
"lint": "eslint -c ./.eslintrc --no-color ./refstack-ui"
|
|
}
|
|
}
|