64f1efe961
On the guideline page when viewing DefCore capabilities, users might want to get the test list containing only required or advisory tests. This patch provides a way for a user to get that test list to use with RefStack client. The phantomjs version was updated to allow testing with Blobs. Change-Id: I9243f5781cb8a688ca3e64645302db5bc4527c37
32 lines
1009 B
JSON
32 lines
1009 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",
|
|
"karma-phantomjs-launcher": "0.2.0",
|
|
"phantomjs": "2.1.1",
|
|
"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"
|
|
}
|
|
}
|