kibana/tasks/config/licenses.js
Spencer d8d65526c6 [eslint] enable no undef (#10825)
* [codeshift] add proper ignore comments

* [codeshift] apply require-to-import transform

* [codeshift/fixup] remove duplicate imports

* [eslint] upgrade config for react "unused" support

* [codeshift] apply remove-unused-imports transform

* [codeshift] apply remove-unused-basic-requires transform

* [codeshift] apply remove-unused-function-arguments transform

* [lintroller] fix argument list spacing

* [codeshift] apply remove-unused-basic-bars transform

* [codeshift/fixup] fixup unused basic var removals

* manually apply remove-unused-assignments transform

* [codeshift] reapply remove-unused-imports transform

* [codeshift] reapply remove-unused-function-arguments transform

* [eslint] autofix param spacing

* manually fix remaining no-undef errors

* use more descriptive file ignore pattern

* add eslint-plugin-react peerDependency

* replace values that looked unused in tests

* remove // kibana-jscodeshift-no-babel comment

* remove import statements from code required by api tests

* Remove '// kibana-jscodeshift-ignore' comments

* address review feedback

* remove remnant of removed if condition
2017-03-22 07:08:23 -07:00

57 lines
1.4 KiB
JavaScript

module.exports = function () {
return {
options: {
licenses: [
'(BSD-2-Clause OR MIT OR Apache-2.0)',
'(BSD-2-Clause OR MIT)',
'(MIT AND CC-BY-3.0)',
'(MIT OR Apache-2.0)',
'AFLv2.1',
'Apache',
'Apache 2.0',
'Apache License, v2.0',
'Apache*',
'Apache, Version 2.0',
'Apache-2.0',
'BSD',
'BSD New',
'BSD*',
'BSD-2-Clause',
'BSD-3-Clause',
'BSD-3-Clause AND MIT',
'BSD-3-Clause OR MIT',
'BSD-like',
'CC-BY',
'CC-BY-4.0',
'ISC',
'MIT',
'MIT*',
'MIT/X11',
'OFL-1.1 AND MIT',
'Public domain',
'Unlicense',
'WTFPL',
'new BSD, and MIT'
],
overrides: {
'assert-plus@0.1.5': ['MIT'],
'buffers@0.1.1': ['MIT/X11'],
'bytes@1.0.0': ['MIT'],
'color-name@1.0.0': ['UNLICENSE'],
'commander@2.2.0': ['MIT'],
'css-color-names@0.0.1': ['MIT'],
'css-parse@1.0.4': ['MIT'],
'css-stringify@1.0.5': ['MIT'],
'css@1.0.8': ['MIT'],
'delegate@3.0.1': ['MIT'],
'flatten@0.0.1': ['MIT'],
'indexof@0.0.1': ['MIT'],
'ripemd160@0.2.0': ['MIT'],
'select@1.0.6': ['MIT'],
'uglify-js@2.2.5': ['BSD'],
'ua-parser-js@0.7.12': ['MIT']
}
}
};
};