replace-in-files-cli
Version: 
Replace matching strings and regexes in files
65 lines (64 loc) • 1.13 kB
JSON
{
	"name": "replace-in-files-cli",
	"version": "4.0.0",
	"description": "Replace matching strings and regexes in files",
	"license": "MIT",
	"repository": "sindresorhus/replace-in-files-cli",
	"funding": "https://github.com/sponsors/sindresorhus",
	"author": {
		"name": "Sindre Sorhus",
		"email": "sindresorhus@gmail.com",
		"url": "https://sindresorhus.com"
	},
	"type": "module",
	"exports": {
		"types": "./api.d.ts",
		"default": "./api.js"
	},
	"bin": {
		"replace-in-files": "./cli.js"
	},
	"sideEffects": false,
	"engines": {
		"node": ">=20"
	},
	"scripts": {
		"test": "xo && ava"
	},
	"files": [
		"cli.js",
		"api.js",
		"api.d.ts"
	],
	"keywords": [
		"cli-app",
		"cli",
		"replace",
		"matching",
		"match",
		"matches",
		"find",
		"search",
		"string",
		"regex",
		"regexp",
		"pattern",
		"files",
		"file",
		"text",
		"contents"
	],
	"dependencies": {
		"escape-string-regexp": "^5.0.0",
		"globby": "^14.1.0",
		"meow": "^13.2.0",
		"normalize-path": "^3.0.0",
		"write-file-atomic": "^6.0.0"
	},
	"devDependencies": {
		"ava": "^6.4.1",
		"execa": "^9.6.0",
		"temp-write": "^6.0.0",
		"xo": "^1.2.2"
	}
}