Gathering detailed insights and metrics for merge-json-file
Gathering detailed insights and metrics for merge-json-file
Gathering detailed insights and metrics for merge-json-file
Gathering detailed insights and metrics for merge-json-file
gulp-merge-json
A gulp plugin to merge JSON files into one file
merge-jsons-webpack-plugin
This plugin is used to merge json files into single json file,using glob or file names
rollup-plugin-merge
Rollup plugin to merge JSON files
ngx-merge-json-translations
Merge source JSON translation file to target locale JSON translation files
npm install merge-json-file
Typescript
Module System
TypeScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
4 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Oct 05, 2020
Latest Version
1.0.1
Package Id
merge-json-file@1.0.1
Unpacked Size
7.01 kB
Size
2.44 kB
File Count
7
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
3
Merge a JSON file with a JSON object.
1yarn add merge-json-file
1npm install merge-json-file
1import { mergeJSON } from "merge-json-file"; 2 3// old-file.json (before): 4// { 5// "ok": true 6// } 7// 8mergeJSON("old-file.json", { test: 1 }); 9 10// old-file.json (after): 11// { 12// "ok": true, 13// "test": 1 14// } 15//
1import { mergeJSON } from "merge-json-file"; 2 3mergeJSON("new-file.json", { test: 1 }); 4 5// new-file.json: 6// { 7// "test": 1 8// } 9// 10
1import { mergeJSON, mergeJSONSync, JSONObject } from "merge-json-file"; 2 3function mergeJSON(path: string, object: JSONObject, options?: Options): Promise<boolean>; 4 5function mergeJSONSync(path: string, object: JSONObject, options?: Options): boolean; 6 7type Options = { 8 /** 9 * Output formatted JSON. Default: `true` 10 */ 11 pretty?: boolean; 12 /** 13 * Recursively create parent directories if needed. Default: `true` 14 */ 15 recursive?: boolean; 16 /** 17 * Ensure file ends with a newline. Default: `true` 18 */ 19 appendNewline?: boolean; 20}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
Found 0/4 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
58 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More