UNPKG

diffler

Version:

A recursive JSON comparison script for humans

41 lines (40 loc) 1.1 kB
{ "name": "diffler", "version": "2.1.0", "description": "A recursive JSON comparison script for humans", "main": "./dist/index.js", "devDependencies": { "eslint": "^8.23.1", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jsdoc": "^39.3.6", "eslint-plugin-prettier": "^4.2.1", "mocha": "^10.0.0", "prettier": "^2.1.2", "uglify-js": "^3.11.2" }, "scripts": { "test": "echo \"Running Mocha Tests\" && mocha ./tests/index.js", "lint": "eslint .", "build": "echo \"Running Build\" && uglifyjs ./src/index.js --comments --compress --mangle -o ./dist/index.js", "bench": "echo \"Running Performance Benchmark\" && node ./tests/performance.js" }, "repository": { "type": "git", "url": "https://github.com/omgaz/diffler.git" }, "keywords": [ "recursive", "difference", "comparison", "compare", "diff", "js-diff", "deep-diff" ], "author": "Gary Chisholm", "license": "MIT", "bugs": { "url": "https://github.com/omgaz/diffler/issues" }, "homepage": "https://github.com/omgaz/diffler" }