File tree Expand file tree Collapse file tree 3 files changed +14
-16
lines changed Expand file tree Collapse file tree 3 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 1
- # regexpp
1
+ # @ eslint-community/ regexpp
2
2
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 )
8
7
9
8
A regular expression parser for ECMAScript.
10
9
11
10
## 💿 Installation
12
11
13
12
``` bash
14
- $ npm install regexpp
13
+ $ npm install @eslint-community/ regexpp
15
14
```
16
15
17
16
- require Node.js 8 or newer.
@@ -27,7 +26,7 @@ import {
27
26
parseRegExpLiteral ,
28
27
validateRegExpLiteral ,
29
28
visitRegExpAST
30
- } from " regexpp"
29
+ } from " @eslint-community/ regexpp"
31
30
```
32
31
33
32
### parseRegExpLiteral(source, options?)
@@ -154,7 +153,7 @@ Validate a regular expression literal.
154
153
155
154
## 📰 Changelog
156
155
157
- - [ GitHub Releases] ( https://github.com/mysticatea /regexpp/releases )
156
+ - [ GitHub Releases] ( https://github.com/eslint-community /regexpp/releases )
158
157
159
158
## 🍻 Contributing
160
159
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " regexpp" ,
2
+ "name" : " @eslint-community/ regexpp" ,
3
3
"version" : " 3.2.0" ,
4
4
"description" : " Regular expression parser for ECMAScript." ,
5
5
"engines" : {
42
42
"build" : " run-s build:*" ,
43
43
"build:tsc" : " tsc --module es2015" ,
44
44
"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" ,
46
46
"clean" : " rimraf .temp index.*" ,
47
47
"codecov" : " nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov" ,
48
48
"lint" : " eslint scripts src test --ext .ts" ,
60
60
},
61
61
"repository" : {
62
62
"type" : " git" ,
63
- "url" : " git+ https://github.com/mysticatea /regexpp.git "
63
+ "url" : " https://github.com/eslint-community /regexpp"
64
64
},
65
65
"keywords" : [
66
66
" regexp" ,
81
81
" es2020" ,
82
82
" annexB"
83
83
],
84
- "author" : " Toru Nagashima (https://github.com/mysticatea) " ,
84
+ "author" : " Toru Nagashima" ,
85
85
"license" : " MIT" ,
86
86
"bugs" : {
87
- "url" : " https://github.com/mysticatea /regexpp/issues"
87
+ "url" : " https://github.com/eslint-community /regexpp/issues"
88
88
},
89
- "homepage" : " https://github.com/mysticatea /regexpp#readme"
89
+ "homepage" : " https://github.com/eslint-community /regexpp#readme"
90
90
}
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export default [
9
9
format : "cjs" ,
10
10
sourcemap : true ,
11
11
sourcemapFile : "index.js.map" ,
12
- banner : `/*! @author Toru Nagashima <https://github.com/mysticatea> */` ,
13
12
} ,
14
13
plugins : [ sourcemaps ( ) , resolve ( ) ] ,
15
14
} ,
You can’t perform that action at this time.
0 commit comments