UNPKG

replace-in-file

Version:

A simple utility to quickly replace text in one or more files.

57 lines (56 loc) 1.29 kB
{ "name": "replace-in-file", "type": "module", "version": "8.4.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" }, "files": [ "bin", "src", "types", "index.js" ], "dependencies": { "chalk": "^5.6.2", "glob": "^13.0.0", "yargs": "^18.0.0" }, "devDependencies": { "@eslint/js": "^9.39.1", "c8": "^10.1.3", "chai": "^6.2.1", "chai-as-promised": "^8.0.2", "eslint": "^9.39.1", "mocha": "^11.7.5" } }