recursive-diff
Version:
Find diff between any two variables where variables be any valid JavaScript data type like string, numeric, array or object
79 lines (78 loc) • 1.9 kB
JSON
{
"name": "recursive-diff",
"version": "1.0.9",
"description": "Find diff between any two variables where variables be any valid JavaScript data type like string, numeric, array or object",
"main": "src/recursive-diff.js",
"types": "src/index.d.ts",
"browser": "dist/recursive-diff.min.js",
"unpkg": "dist/recursive-diff.min.js",
"directories": {
"test": "test"
},
"files": [
"LICENSE",
"README.md",
"src/",
"dist/",
"index.d.ts"
],
"scripts": {
"test": "mocha --timeout 10000 test/**/*.spec.js --reporter spec",
"lint": "eslint src test",
"build": "webpack --config webpack.config.js",
"build:dev": "webpack --config webpack.dev.config.js",
"coverage": "nyc --reporter=lcov npm run test",
"audit": "npm audit"
},
"repository": {
"type": "git",
"url": "https://github.com/cosmicanant/recursive-diff.git"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"keywords": [
"deep",
"diff",
"deep",
"difference",
"object",
"diff",
"object",
"difference",
"recursive",
"diff",
"recursive",
"difference",
"tree",
"diff",
"tree",
"difference",
"variable",
"difference",
"track",
"change"
],
"author": "Anant <anant.shukla.rkgit@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cosmicanant/recursive-diff/issues"
},
"homepage": "https://github.com/cosmicanant/recursive-diff",
"precommit": {
"run": [
"lint",
"test",
"audit"
]
}
}