{ "name": "replace-in-file", "type": "module", "version": "8.3.0", "description": "A simple utility to quickly replace text in one or more files.", "homepage": "https://github.com/adamreisnz/replace-in-file#readme", "author": { "name": "Adam Reis", "email": "adam@reis.nz" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/adamreisnz/replace-in-file.git" }, "bugs": { "url": "https://github.com/adamreisnz/replace-in-file/issues" }, "keywords": [ "replace", "text", "contents", "file" ], "main": "index.js", "bin": "./bin/cli.js", "types": "./types/index.d.ts", "engines": { "node": ">=18" }, "scripts": { "test": "mocha 'src/**/*.spec.js'", "coverage": "c8 npm run test", "postcoverage": "open -a \"Google Chrome\" ./coverage/lcov-report/index.html", "postversion": "git push && git push --tags && npm publish" }, "dependencies": { "chalk": "^5.3.0", "glob": "^10.4.2", "yargs": "^17.7.2" }, "devDependencies": { "@eslint/js": "^9.2.0", "c8": "^10.1.2", "chai": "^5.1.1", "chai-as-promised": "^8.0.0", "eslint": "^9.2.0", "mocha": "^10.4.0" } }