diff --git a/MIT.LICENSE b/LICENSE similarity index 100% rename from MIT.LICENSE rename to LICENSE diff --git a/README.md b/README.md index 0b296564..8db72de8 100644 --- a/README.md +++ b/README.md @@ -55,4 +55,4 @@ To find out what environments work with a particular Jasmine release, see the [r * [Christian Williams](mailto:antixian666@gmail.com) * Sheel Choksi -Copyright (c) 2008-2022 Jasmine Maintainers. This software is licensed under the [MIT License](https://github.com/jasmine/jasmine/blob/main/MIT.LICENSE). +Copyright (c) 2008-2022 Jasmine Maintainers. This software is licensed under the [MIT License](https://github.com/jasmine/jasmine/blob/main/LICENSE). \ No newline at end of file diff --git a/grunt/config/compress.js b/grunt/config/compress.js index 551b50b4..a732e147 100644 --- a/grunt/config/compress.js +++ b/grunt/config/compress.js @@ -11,7 +11,7 @@ module.exports = { }, files: [ - { src: [ root("MIT.LICENSE") ] }, + { src: [ root("LICENSE") ] }, { src: [ "jasmine_favicon.png"], dest: standaloneLibDir, diff --git a/package.json b/package.json index 8808b81a..c23e96e6 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "homepage": "https://jasmine.github.io", "main": "./lib/jasmine-core.js", "files": [ - "MIT.LICENSE", + "LICENSE", "README.md", "images/*.{png,svg}", "lib/**/*.{js,css}", diff --git a/spec/npmPackage/npmPackageSpec.js b/spec/npmPackage/npmPackageSpec.js index ef9dcc9c..4cc67722 100644 --- a/spec/npmPackage/npmPackageSpec.js +++ b/spec/npmPackage/npmPackageSpec.js @@ -113,7 +113,7 @@ describe('npm package', function() { const files = fs.readdirSync(path.resolve(this.tmpDir, 'package')); files.sort(); expect(files).toEqual([ - 'MIT.LICENSE', + 'LICENSE', 'README.md', 'images', 'lib',