-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 907 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "eslint-plugin-optimize-regex",
"version": "1.2.1",
"description": "Optimize regex literals",
"repository": "https://github.com/BrainMaestro/eslint-plugin-optimize-regex",
"bugs": "https://github.com/BrainMaestro/eslint-plugin-optimize-regex/issues",
"homepage": "https://github.com/BrainMaestro/eslint-plugin-optimize-regex",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"regex",
"regex-optimizer"
],
"author": "Ezinwa Okpoechi",
"contributors": [
"Brett Zamir"
],
"main": "lib/index.js",
"scripts": {
"eslint": "eslint .",
"mocha": "nyc mocha tests --recursive",
"test": "npm run eslint && npm run mocha"
},
"dependencies": {
"regexp-tree": "^0.1.21"
},
"devDependencies": {
"eslint": "^7.0.0",
"mocha": "^10.2.0",
"nyc": "^15.0.1"
},
"engines": {
"node": ">=10"
},
"license": "MIT"
}