-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 951 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
38
39
40
41
{
"name": "xregexp-quotemeta",
"version": "1.0.9",
"description": "\\Q..\\E (quotemeta) support for XRegExp",
"homepage": "https://github.com/mintern/xregexp-quotemeta",
"author": "Brandon Mintern <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mintern/xregexp-quotemeta.git"
},
"keywords": [
"regex",
"regexp",
"regular expression",
"xregexp",
"quotemeta",
"quote",
"meta",
"q",
"escape"
],
"files": [
"xregexp-quotemeta.js",
"src"
],
"main": "xregexp-quotemeta.js",
"scripts": {
"prepare": "./.build",
"pretest": "./.build",
"test": "node test.js"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-arrow-functions": "^7.25.9",
"@babel/plugin-transform-modules-umd": "^7.25.9",
"assert": "^2.0.0",
"xregexp": "^4.4.1"
}
}