-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.13 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.13 KB
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
60
61
62
63
64
65
66
67
68
69
{
"name": "re2",
"version": "1.24.0",
"description": "Bindings for RE2: fast, safe alternative to backtracking regular expression engines.",
"homepage": "https://github.com/uhop/node-re2",
"bugs": "https://github.com/uhop/node-re2/issues",
"type": "commonjs",
"main": "re2.js",
"types": "re2.d.ts",
"files": [
"binding.gyp",
"lib",
"re2.d.ts",
"scripts/*.js",
"vendor"
],
"dependencies": {
"install-artifact-from-github": "^1.4.0",
"nan": "^2.26.2",
"node-gyp": "^12.2.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"nano-benchmark": "^1.0.15",
"prettier": "^3.8.1",
"tape-six": "^1.7.13",
"tape-six-proc": "^1.2.8",
"typescript": "^6.0.2"
},
"scripts": {
"test": "tape6 --flags FO",
"test:seq": "tape6-seq --flags FO",
"test:proc": "tape6-proc --flags FO",
"save-to-github": "save-to-github-cache --artifact build/Release/re2.node",
"install": "install-from-cache --artifact build/Release/re2.node --host-var RE2_DOWNLOAD_MIRROR --skip-path-var RE2_DOWNLOAD_SKIP_PATH --skip-ver-var RE2_DOWNLOAD_SKIP_VER || node-gyp -j max rebuild",
"verify-build": "node scripts/verify-build.js",
"build:dev": "node-gyp -j max build --debug",
"build": "node-gyp -j max build",
"build1": "node-gyp build",
"rebuild:dev": "node-gyp -j max rebuild --debug",
"rebuild": "node-gyp -j max rebuild",
"rebuild1": "node-gyp rebuild",
"clean": "node-gyp clean && node-gyp configure",
"clean-build": "node-gyp clean",
"ts-check": "tsc --noEmit",
"lint": "prettier --check *.js *.ts tests/ bench/",
"lint:fix": "prettier --write *.js *.ts tests/ bench/"
},
"github": "https://github.com/uhop/node-re2",
"repository": {
"type": "git",
"url": "git://github.com/uhop/node-re2.git"
},
"keywords": [
"RegExp",
"RegEx",
"text processing",
"PCRE alternative"
],
"author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://lazutkin.com/)",
"funding": "https://github.com/sponsors/uhop",
"license": "BSD-3-Clause",
"tape6": {
"tests": [
"/tests/test-*.*js",
"/tests/test-*.*ts"
]
}
}