{
  "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"
  }
}