nested-object-diff
Version:
A lightweight javascript diff library for comparing two javascript object nested with supporting matching by value of the object's choosen key name in array.
52 lines (51 loc) • 1.49 kB
JSON
{
"name": "nested-object-diff",
"version": "1.1.0",
"description": "A lightweight javascript diff library for comparing two javascript object nested with supporting matching by value of the object's choosen key name in array.",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel index.js -d dist",
"lint": "eslint .",
"test": "mocha test/**/*.js",
"test:coverage": "nyc --reporter=lcov --reporter=text-lcov npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/eraykose/nested-object-diff.git"
},
"author": "Eray Köse <eraykose@gmail.com>",
"keywords": [
"nested",
"deep",
"object",
"array",
"json",
"diff"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"bugs": {
"url": "https://github.com/eraykose/nested-object-diff/issues"
},
"homepage": "https://github.com/eraykose/nested-object-diff/#readme"
}