merge-json-cli
Version:
A lean cli tool to merge multiple json files into one.
37 lines (36 loc) • 827 B
JSON
{
"name": "merge-json-cli",
"version": "1.0.4",
"description": "A lean cli tool to merge multiple json files into one.",
"main": "src/merge.js",
"bin": "src/cli.js",
"type": "module",
"scripts": {
"test": "c8 node --test test/*.js",
"test:watch": "node --watch --test test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buuhuu/merge-json-cli.git"
},
"keywords": [
"merge",
"json"
],
"author": "Dirk Rudolph",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/buuhuu/merge-json-cli/issues"
},
"homepage": "https://github.com/buuhuu/merge-json-cli#readme",
"engines": {
"node": ">=18.3.0"
},
"devDependencies": {
"c8": "^10.1.2"
},
"dependencies": {
"fast-glob": "^3.3.2",
"yargs-parser": "^21.1.1"
}
}