UNPKG

277 BJavaScriptView Raw
1'use strict';
2
3const licenseHeuristics = {
4 'Apache-2.0*': /Apache License, Version 2\.0/u,
5 'GPL-3.0*': /GNU GENERAL PUBLIC LICENSE\s*Version 3,/mu,
6 'MIT*': /MIT|The MIT License|ermission is hereby granted, free of charge, to any/u
7};
8
9module.exports = licenseHeuristics;