Skip to content

Licensing fixup

Kunal Marwaha requested to merge marwahaha/pubsweet:licensing into master

Request for comments!

fixes #79 (closed)

I used

find . -iname "package.json" | while read -r f; do echo $f; if [ '"MIT"' != $(cat $f | jq .license) ]; then echo $(cat $f | jq .license); fi; done

and found a few unmarked package.jsons, and one that was set to default (ISC).

My PR fixes the package.jsons above. Also, it places one LICENSE file at the root (updated to 2018), and removes all others.

Merge request reports