UNPKG

fast-replaceall

Version:
54 lines 1.5 kB
{ "name": "fast-replaceall", "version": "2.0.1", "description": "Replace all substring matches in a string.", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "unpkg": "dist/index.umd.js", "jsdelivr": "dist/index.umd.js", "scripts": { "clean": "rm -rf node_modules", "build": "vite build", "prepublishOnly": "npm run build", "test": "vitest run --coverage", "benchmark": "npm run build && tiret -i ./benchmark/*.test.js" }, "repository": { "type": "git", "url": "git+https://github.com/fengxinming/fast-replaceall.git" }, "keywords": [ "string", "replace", "replaceall" ], "author": "Jesse Feng <fxm0016@126.com>", "license": "MIT", "bugs": { "url": "https://github.com/fengxinming/fast-replaceall/issues" }, "homepage": "https://github.com/fengxinming/fast-replaceall#readme", "devDependencies": { "@commitlint/cli": "^19.2.1", "@commitlint/config-conventional": "^19.1.0", "@rollup/plugin-typescript": "^12.1.2", "@vitest/coverage-v8": "^3.0.9", "camelcase": "^8.0.0", "eslint": "^8.57.0", "eslint-config-fe": "^2.1.2", "eslint-plugin-simple-import-sort": "^12.0.0", "husky": "^9.0.11", "lint-staged": "^15.2.2", "moment": "^2.30.1", "terser": "^5.30.4", "tiret": "^1.0.1", "typescript": "^5.2.2", "vite": "^6.1.0", "vite-plugin-external": "^6.0.0", "vitest": "^3.0.9" }, "files": [ "dist" ] }