-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.34 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "rematch-javascript",
"repository": {
"type": "git",
"url": "git://github.com/REmatchChile/REmatch-javascript.git"
},
"bugs": {
"url": "https://github.com/REmatchChile/REmatch-javascript/issues"
},
"homepage": "https://github.com/REmatchChile/REmatch-javascript#readme",
"version": "1.2.2",
"description": "JavaScript bindings for REmatch, an information extraction focused regex library that uses constant delay algoirthms.",
"author": "Vicente Calisto",
"license": "MIT",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"browser": "lib/index.min.js",
"exports": {
".": {
"node": {
"module": "./lib/index.mjs",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
},
"browser": {
"module": "./lib/index.mjs",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
},
"default": "./lib/index.min.js"
},
"./package.json": "./package.json"
},
"files": [
"lib/**/*",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "npm-run-all clean:build build:rollup postbuild",
"build:bindings": "node scripts/buildEmscripten.js",
"build:rollup": "rollup --config rollup.config.js --bundleConfigAsCjs",
"postbuild": "node scripts/postBuild.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.js",
"prepublishOnly": "npm run build && npm run test",
"clean:build": "rimraf lib/"
},
"keywords": [
"rematch",
"rematchjs",
"regex",
"regexp",
"regular expression",
"text processing"
],
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-modules-umd": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.7.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-import-meta": "^2.2.1",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup": "^4.21.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-polyfill-node": "^0.13.0"
}
}