differrer
Version:
> Utility to perform deep diff on any data types with smart order detection in arrays and different views implemented for convenience
52 lines (51 loc) • 1.24 kB
JSON
{
"name": "differrer",
"version": "1.1.2",
"files": ["dist"],
"main": "./dist/differrer.umd.js",
"module": "./dist/differrer.mjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/differrer.mjs",
"require": "./dist/differrer.umd.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Lukasz-pluszczewski/differrer"
},
"author": "Łukasz Pluszczewski",
"bugs": {
"url": "https://github.com/Lukasz-pluszczewski/differrer/issues"
},
"homepage": "https://github.com/Lukasz-pluszczewski/differrer",
"keywords": [
"diff",
"deep-diff",
"difference",
"compare",
"deep",
"jsdiff",
"jsondiff",
"json-diff",
"change",
"changes"
],
"license": "MIT",
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"test": "jest",
"generateExampleTables": "ts-node --esm src/scripts/generateExampleTables.ts",
"testDiffChangesView": "ts-node --esm src/scripts/testDiffChangesView.ts"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"json5": "^2.2.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}