xmldom icon indicating copy to clipboard operation
xmldom copied to clipboard

MIT license

Open mistic opened this issue 6 years ago • 3 comments

@jindw @bigeasy Can't we simple use an MIT only license here?

If you think it's not possible, can we add at least 2 different license files one LICENSE.MIT and another LICENSE.LGPL-2.0 so we can have the license checkers automatically detecting this?

mistic avatar Jun 12 '18 19:06 mistic

I'd like to piggy-back this issue and point out a discrepancy I'm seeing on the published package on npmjs.com:

The package.json file (commit 0be2ae9) states:

"license": "(LGPL-2.0 or MIT)"

However, installing the package from npm (version 0.1.27) has this in its package.json:

  "licenses": [
    {
      "type": "LGPL",
      "url": "http://www.gnu.org/licenses/lgpl.html",
      "MIT": "http://opensource.org/licenses/MIT"
    }
  ],

I'd expect two objects in the licenses array, one for LGPL-2.0, the other for MIT. The single object above seems broken - type and MIT don't make sense bundled together in a single licenses object.

Can this be addressed? Perhaps with npm support?

adrukh avatar Jul 02 '18 06:07 adrukh

I believe a big part of the problem is related with the way the license files are included in the repo. Add them as 2 different license files one LICENSE.MIT and another LICENSE.LGPL-2.0 should solve the problem.

mistic avatar Jul 02 '18 11:07 mistic

Seems to be fixed in master by PR #178 but never released

brody4hire avatar Dec 15 '19 22:12 brody4hire