forked from olcxjas-softworks/LarpixClient
36 lines
684 B
JSON
36 lines
684 B
JSON
{
|
|
"name": "replace",
|
|
"description": "Command line search and replace utility",
|
|
"license": "MIT",
|
|
"version": "1.2.2",
|
|
"author": "Alessandro Maclaine <almaclaine@gmail.com>",
|
|
"main": "replace.js",
|
|
"engines": {
|
|
"node": ">= 6"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ALMaclaine/replace"
|
|
},
|
|
"scripts": {
|
|
"test": "node test"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "2.4.2",
|
|
"minimatch": "3.0.5",
|
|
"yargs": "^15.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"tape": "4.11.0"
|
|
},
|
|
"bin": {
|
|
"replace": "./bin/replace.js",
|
|
"search": "./bin/search.js"
|
|
},
|
|
"keywords": [
|
|
"sed",
|
|
"grep",
|
|
"search",
|
|
"replace"
|
|
]
|
|
}
|