diff --git a/README.md b/README.md index 7d9d230..8a1e4d8 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,8 @@ [![npm version](https://img.shields.io/npm/v/regexpp.svg)](https://www.npmjs.com/package/regexpp) [![Downloads/month](https://img.shields.io/npm/dm/regexpp.svg)](http://www.npmtrends.com/regexpp) -[![Build Status](https://github.com/mysticatea/regexpp/workflows/CI/badge.svg)](https://github.com/mysticatea/regexpp/actions) -[![codecov](https://codecov.io/gh/mysticatea/regexpp/branch/main/graph/badge.svg)](https://codecov.io/gh/mysticatea/regexpp) -[![Dependency Status](https://david-dm.org/mysticatea/regexpp.svg)](https://david-dm.org/mysticatea/regexpp) +[![Build Status](https://github.com/eslint-community/regexpp/workflows/CI/badge.svg)](https://github.com/eslint-community/regexpp/actions) +[![codecov](https://codecov.io/gh/eslint-community/regexpp/branch/main/graph/badge.svg)](https://codecov.io/gh/eslint-community/regexpp) A regular expression parser for ECMAScript. @@ -154,7 +153,7 @@ Validate a regular expression literal. ## 📰 Changelog -- [GitHub Releases](https://github.com/mysticatea/regexpp/releases) +- [GitHub Releases](https://github.com/eslint-community/regexpp/releases) ## 🍻 Contributing diff --git a/package.json b/package.json index b638e95..6e18d96 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/mysticatea/regexpp.git" + "url": "https://github.com/eslint-community/regexpp" }, "keywords": [ "regexp", @@ -81,10 +81,10 @@ "es2020", "annexB" ], - "author": "Toru Nagashima (https://github.com/mysticatea)", + "author": "Toru Nagashima", "license": "MIT", "bugs": { - "url": "https://github.com/mysticatea/regexpp/issues" + "url": "https://github.com/eslint-community/regexpp/issues" }, - "homepage": "https://github.com/mysticatea/regexpp#readme" + "homepage": "https://github.com/eslint-community/regexpp#readme" } diff --git a/rollup.config.js b/rollup.config.js index 00431af..00894a6 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -9,7 +9,6 @@ export default [ format: "cjs", sourcemap: true, sourcemapFile: "index.js.map", - banner: `/*! @author Toru Nagashima */`, }, plugins: [sourcemaps(), resolve()], },