string-replace-all
Version:
Replaces all the occurrences of a string into a string with another string.
32 lines (31 loc) • 805 B
JSON
{
"name": "string-replace-all",
"repository": "github:fabiospampinato/string-replace-all",
"description": "Replaces all the occurrences of a string into a string with another string.",
"version": "2.0.0",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "tsex test",
"test:watch": "tsex test --watch",
"prepublishOnly": "npm run clean && npm run compile && npm run test"
},
"keywords": [
"string",
"replace",
"all"
],
"dependencies": {
"string-escape-regex": "^1.0.0"
},
"devDependencies": {
"fava": "^0.0.6",
"tsex": "^1.1.2",
"typescript": "^4.6.4"
}
}