diff options
author | Nik Nyby <nikolas@gnu.org> | 2015-06-16 20:27:13 -0400 |
---|---|---|
committer | Nik Nyby <nikolas@gnu.org> | 2015-06-16 20:27:13 -0400 |
commit | 46ec81513d730a2ecc3869ca7ce2366d56286368 (patch) | |
tree | 4b0cdd2a793ae672c292640728c149c4dc7676e9 /lib/js_checker | |
parent | e5bd270b6b4692bad78561a4baf81c5d341f4790 (diff) | |
download | librejsxul-46ec81513d730a2ecc3869ca7ce2366d56286368.tar.lz librejsxul-46ec81513d730a2ecc3869ca7ce2366d56286368.tar.xz librejsxul-46ec81513d730a2ecc3869ca7ce2366d56286368.zip |
Add WTFPL
Diffstat (limited to 'lib/js_checker')
-rw-r--r-- | lib/js_checker/license_definitions.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/js_checker/license_definitions.js b/lib/js_checker/license_definitions.js index 41cfb7b..d5fcd83 100644 --- a/lib/js_checker/license_definitions.js +++ b/lib/js_checker/license_definitions.js @@ -247,5 +247,23 @@ exports.licenses = { type: type.SHORT } ] + }, + WTFPL: { + licenseName: 'Do What The F*ck You Want To Public License (WTFPL)', + canonicalUrl: [ + 'http://www.wtfpl.net/txt/copying/', + 'magnet:?xt=urn:btih:723febf9f6185544f57f0660a41489c7d6b4931b&dn=wtfpl.txt' + ], + identifier: 'WTFPL', + licenseFragments: [ + { + text: 'DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE', + type: type.SHORT + }, + { + text: '0. You just DO WHAT THE FUCK YOU WANT TO.', + type: type.SHORT + } + ] } }; |