UNPKG

re2js

Version:

RE2JS is the JavaScript port of RE2, a regular expression engine that provides linear time matching

79 lines 2.4 kB
{ "name": "re2js", "version": "2.8.6", "description": "RE2JS is the JavaScript port of RE2, a regular expression engine that provides linear time matching", "type": "module", "sideEffects": false, "keywords": [ "re2js", "re2", "regex engine", "redos", "regex" ], "author": "Oleksii Vasyliev", "license": "MIT", "repository": "github:le0pard/re2js", "bugs": { "url": "https://github.com/le0pard/re2js/issues" }, "homepage": "https://github.com/le0pard/re2js#readme", "files": [ "build/", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "main": "build/index.cjs", "module": "build/index.js", "unpkg": "build/index.umd.js", "exports": { ".": { "import": { "types": "./build/index.d.ts", "default": "./build/index.js" }, "require": { "types": "./build/index.d.cts", "default": "./build/index.cjs" } } }, "types": "build/index.d.ts", "scripts": { "build": "rolldown -c && yarn build:types", "dev": "rolldown -c -w", "build:types": "tsc && dts-bundle-generator -o build/index.d.ts tmp/types/index.d.ts && cp build/index.d.ts build/index.d.cts && rm -rf tmp/types", "lint": "pnpify run prettier --check src tools *.config.js && eslint src/**/*.js tools/**/*.js rolldown.config.js vitest.config.js", "format": "pnpify run prettier --write src tools *.config.js", "test": "vitest run --project=node", "test:watch": "vitest --project=node", "test:browser": "vitest run --browser.enabled --project=browser", "coverage": "vitest run --project=node --coverage", "bench": "vitest bench --run --project=node" }, "devDependencies": { "@eslint/js": "^9.39.4", "@unicode/unicode-17.0.0": "^1.6.17", "@vitest/browser": "^4.1.9", "@vitest/browser-playwright": "^4.1.9", "@vitest/coverage-v8": "^4.1.9", "@yarnpkg/pnpify": "^4.1.6", "dts-bundle-generator": "^9.5.1", "eslint": "9.39.4", "eslint-config-prettier": "^10.1.8", "eslint-import-resolver-node": "^0.4.0", "eslint-plugin-import": "^2.32.0", "globals": "^17.7.0", "lodash": "^4.18.1", "playwright": "^1.61.1", "prettier": "^3.9.4", "rolldown": "^1.1.4", "typescript": "^6.0.3", "unicode-property-value-aliases": "^3.9.0", "vitest": "^4.1.9" }, "packageManager": "yarn@4.17.0" }