-
-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
59 lines (59 loc) · 1.78 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "xregexp",
"version": "5.1.1",
"description": "Extended regular expressions",
"homepage": "http://xregexp.com/",
"author": "Steven Levithan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/slevithan/xregexp.git"
},
"keywords": [
"regex",
"regexp",
"regular expression",
"unicode"
],
"browser": "./lib/index.js",
"main": "./lib/index.js",
"module": "./src/index.js",
"files": [
"src",
"lib",
"tools/output",
"xregexp-all.js",
"types/index.d.ts"
],
"scripts": {
"lint": "eslint .",
"babel": "babel src -d lib",
"build-unicode-data": "node tools/scripts/category-regex.js && node tools/scripts/property-regex.js && node tools/scripts/script-regex.js",
"prebuild": "npm run build-unicode-data && npm run lint && npm run babel",
"build": "browserify lib/index.js --standalone XRegExp > xregexp-all.js",
"pretest": "npm run build",
"test": "nyc --reporter=lcov --reporter=text-summary jasmine JASMINE_CONFIG_PATH=tests/jasmine.json",
"prepublish": "npm test"
},
"types": "types/index.d.ts",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@unicode/unicode-14.0.0": "^1.6.4",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-xregexp": "^1.0.0",
"browserify": "^17.0.1",
"eslint": "^8.57.1",
"jasmine": "^5.4.0",
"jsesc": "^3.0.2",
"nyc": "^17.1.0",
"unicode-property-value-aliases": "^3.8.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.26.0"
}
}