f100563516
This commit does the following: - adds the Spec test reporter to display all the passed/failed test specs after all the tests finish running - removes console logging (we don't need it anymore, since we can see the reported results at the end of every test run) - adds the XML test reporter for easier Jenkins integration
74 lines
2.1 KiB
JSON
74 lines
2.1 KiB
JSON
{
|
|
"name": "bbb-html5-client",
|
|
"description": "BigBlueButton HTML5 Client",
|
|
"scripts": {
|
|
"start": "cd app;./start.sh",
|
|
"preinstall": "npm install grunt-cli",
|
|
"test": "node_modules/.bin/wdio ./tests/webdriverio/wdio.conf.js",
|
|
"lint": "node_modules/jscs/bin/jscs *",
|
|
"autofix": "node_modules/jscs/bin/jscs * --fix"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.18.0",
|
|
"classnames": "^2.2.5",
|
|
"eventemitter2": "^2.1.3",
|
|
"grunt-cli": "~1.2.0",
|
|
"hiredis": "^0.5.0",
|
|
"history": "~3.3.0",
|
|
"meteor-node-stubs": "^0.2.3",
|
|
"node-sass": "~3.8.0",
|
|
"probe-image-size": "~2.1.1",
|
|
"react-addons-shallow-compare": "^15.4.2",
|
|
"react": "~15.4.2",
|
|
"react-addons-css-transition-group": "~15.4.2",
|
|
"react-addons-pure-render-mixin": "~15.4.2",
|
|
"react-autosize-textarea": "~0.3.2",
|
|
"react-color": "^2.11.1",
|
|
"react-dom": "~15.4.2",
|
|
"react-intl": "~2.1.3",
|
|
"react-modal": "~1.7.1",
|
|
"react-router": "~3.0.2",
|
|
"react-tabs": "^0.8.2",
|
|
"react-toggle": "^2.2.0",
|
|
"redis": "^2.6.2",
|
|
"winston": "^2.3.1",
|
|
"xml2js": "^0.4.17",
|
|
"lodash": "~4.17.4"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^6.3.6",
|
|
"chai": "^3.5.0",
|
|
"grunt": "^0.4.5",
|
|
"grunt-concurrent": "~2.2.1",
|
|
"grunt-contrib-watch": "~1.0.0",
|
|
"grunt-force-task": "~2.0.0",
|
|
"grunt-jscs": "~2.8.0",
|
|
"grunt-newer": "~1.2.0",
|
|
"grunt-shell": "~1.2.1",
|
|
"jasmine": "^2.6.0",
|
|
"jscs": "~2.11.0",
|
|
"load-grunt-tasks": "~3.4.1",
|
|
"postcss-modules-extract-imports": "1.0.0",
|
|
"postcss-modules-local-by-default": "1.0.0",
|
|
"postcss-modules-scope": "1.0.0",
|
|
"postcss-modules-values": "1.1.1",
|
|
"postcss-nested": "1.0.0",
|
|
"wdio-jasmine-framework": "^0.3.1",
|
|
"wdio-junit-reporter": "^0.3.0",
|
|
"wdio-spec-reporter": "^0.1.0",
|
|
"webdriverio": "^4.8.0"
|
|
},
|
|
"cssModules": {
|
|
"extensions": [
|
|
"scss"
|
|
],
|
|
"postcssPlugins": {
|
|
"postcss-nested": {},
|
|
"postcss-modules-local-by-default": {},
|
|
"postcss-modules-extract-imports": {},
|
|
"postcss-modules-scope": {},
|
|
"autoprefixer": {}
|
|
}
|
|
}
|
|
}
|