Plato on Github
Report Home
scripts/index.js
Maintainability
55.98
Lines of code
57
Difficulty
3.91
Estimated Errors
0.17
Function weight
By Complexity
By SLOC
'use stirct'; var config = { name: 'scripts', description: 'Scripts optimization', sequence: [ 'scripts:jshint', 'scripts:tmp-create', 'scripts:ng-directives', 'scripts:test-dev', 'scripts:build', 'scripts:test-build', 'scripts:bundle', 'scripts:tmp-clean' ], settings: { paths: { tmp: '${paths.tmp}', src: '${paths.src}/module', build: '${paths.build}/js', }, angular: { directives: '${scripts.paths.src}/**/directives/*.js' }, src: [ '${scripts.paths.src}/**/*.module.js', '${scripts.paths.src}/**/*.js', ], bundle: [], minify: { root: 'src' }, tests: { shared: [ './lib/angular/angular.js', './lib/angular-mocks/angular-mocks.js' ], libs: [], spec: [ './test/**/*.spec.js', '${scripts.paths.src}/**/*.spec.js' ] } } }; module.exports = config;