Skip to content

Commit e2d29cb

Browse files
committed
fix: update package name (#1)
1 parent ccb07e9 commit e2d29cb

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
# regexpp
1+
# @eslint-community/regexpp
22

3-
[![npm version](https://img.shields.io/npm/v/regexpp.svg)](https://www.npmjs.com/package/regexpp)
4-
[![Downloads/month](https://img.shields.io/npm/dm/regexpp.svg)](http://www.npmtrends.com/regexpp)
5-
[![Build Status](https://github.com/mysticatea/regexpp/workflows/CI/badge.svg)](https://github.com/mysticatea/regexpp/actions)
6-
[![codecov](https://codecov.io/gh/mysticatea/regexpp/branch/main/graph/badge.svg)](https://codecov.io/gh/mysticatea/regexpp)
7-
[![Dependency Status](https://david-dm.org/mysticatea/regexpp.svg)](https://david-dm.org/mysticatea/regexpp)
3+
[![npm version](https://img.shields.io/npm/v/@eslint-community/regexpp.svg)](https://www.npmjs.com/package/@eslint-community/regexpp)
4+
[![Downloads/month](https://img.shields.io/npm/dm/@eslint-community/regexpp.svg)](http://www.npmtrends.com/@eslint-community/regexpp)
5+
[![Build Status](https://github.com/eslint-community/regexpp/workflows/CI/badge.svg)](https://github.com/eslint-community/regexpp/actions)
6+
[![codecov](https://codecov.io/gh/eslint-community/regexpp/branch/main/graph/badge.svg)](https://codecov.io/gh/eslint-community/regexpp)
87

98
A regular expression parser for ECMAScript.
109

1110
## 💿 Installation
1211

1312
```bash
14-
$ npm install regexpp
13+
$ npm install @eslint-community/regexpp
1514
```
1615

1716
- require Node.js 8 or newer.
@@ -27,7 +26,7 @@ import {
2726
parseRegExpLiteral,
2827
validateRegExpLiteral,
2928
visitRegExpAST
30-
} from "regexpp"
29+
} from "@eslint-community/regexpp"
3130
```
3231

3332
### parseRegExpLiteral(source, options?)
@@ -154,7 +153,7 @@ Validate a regular expression literal.
154153

155154
## 📰 Changelog
156155

157-
- [GitHub Releases](https://github.com/mysticatea/regexpp/releases)
156+
- [GitHub Releases](https://github.com/eslint-community/regexpp/releases)
158157

159158
## 🍻 Contributing
160159

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "regexpp",
2+
"name": "@eslint-community/regexpp",
33
"version": "3.2.0",
44
"description": "Regular expression parser for ECMAScript.",
55
"engines": {
@@ -42,7 +42,7 @@
4242
"build": "run-s build:*",
4343
"build:tsc": "tsc --module es2015",
4444
"build:rollup": "rollup -c",
45-
"build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
45+
"build:dts": "dts-bundle --name @eslint-community/regexpp --main .temp/index.d.ts --out ../index.d.ts",
4646
"clean": "rimraf .temp index.*",
4747
"codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
4848
"lint": "eslint scripts src test --ext .ts",
@@ -60,7 +60,7 @@
6060
},
6161
"repository": {
6262
"type": "git",
63-
"url": "git+https://github.com/mysticatea/regexpp.git"
63+
"url": "https://github.com/eslint-community/regexpp"
6464
},
6565
"keywords": [
6666
"regexp",
@@ -81,10 +81,10 @@
8181
"es2020",
8282
"annexB"
8383
],
84-
"author": "Toru Nagashima (https://github.com/mysticatea)",
84+
"author": "Toru Nagashima",
8585
"license": "MIT",
8686
"bugs": {
87-
"url": "https://github.com/mysticatea/regexpp/issues"
87+
"url": "https://github.com/eslint-community/regexpp/issues"
8888
},
89-
"homepage": "https://github.com/mysticatea/regexpp#readme"
89+
"homepage": "https://github.com/eslint-community/regexpp#readme"
9090
}

rollup.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export default [
99
format: "cjs",
1010
sourcemap: true,
1111
sourcemapFile: "index.js.map",
12-
banner: `/*! @author Toru Nagashima <https://github.com/mysticatea> */`,
1312
},
1413
plugins: [sourcemaps(), resolve()],
1514
},

0 commit comments

Comments
 (0)