@bluelovers/deep-diff
Version:
Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.
132 lines (131 loc) • 5.18 kB
JSON
{
"name": "@bluelovers/deep-diff",
"version": "1.0.3",
"description": "Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.",
"keywords": [
"diff",
"difference",
"compare",
"change-tracking",
"create-by-yarn-tool",
"create-by-tsdx"
],
"homepage": "https://github.com/bluelovers/deep-diff#readme",
"bugs": {
"url": "https://github.com/bluelovers/deep-diff/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluelovers/deep-diff.git"
},
"license": "MIT",
"author": "Phillip Clark <phillip@flitbit.com>",
"contributors": [
"Simen Bekkhus <sbekkhus91@gmail.com>",
"Paul Pflugradt <paulpflugradt@googlemail.com>",
"wooorm <tituswormer@gmail.com>",
"Nicholas Calugar <njcalugar@gmail.com>",
"Yandell <hyandell@amazon.com>",
"Thiago Santos <thia.mdossantos@gmail.com>",
"Steve Mao <maochenyan@gmail.com>",
"Mats Bryntse <mats.dev@bryntum.com>",
"Phillip Clark <pclark@leisurelink.com>",
"ZauberNerd <zaubernerd@zaubernerd.de>",
"ravishivt <javishi@gmail.com>",
"Daniel Spangler <daniel.spangler@gmail.com>",
"Sam Beran <sberan@gmail.com>",
"Thomas de Barochez <thomas.barochez+github@gmail.com>",
"Morton Fox <github@qslw.com>",
"Amila Welihinda <amilajack@users.noreply.github.com>",
"Will Biddy <willbiddy@gmail.com>",
"icesoar <icesoar@hotmail.com>",
"Serkan Serttop <serkanserttop@yahoo.com>",
"orlando <operri@opentable.com>",
"Tom MacWright <tmcw@users.noreply.github.com>",
"Denning <denningj@amazon.com>",
"Dan Drinkard <dan.drinkard@gmail.com>",
"Elad Efrat <elad@iNNU.ORG>",
"caasi Huang <caasi.igd@gmail.com>",
"Tom Ashworth <tashworth@twitter.com>"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json",
"./src/*": "./src/*"
},
"main": "dist/index.cjs",
"unpkg": "dist/index.umd.production.min.cjs",
"module": "dist/index.esm.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"pretest": "echo pretest",
"test": "jest",
"test:jest:clearCache": "jest --clearCache",
"posttest": "yarn run build",
"install:resetLockfile": "yarn-tool install --reset-lockfile",
"build": "yarn run build:tsdx && yarn run build:dts:tsc",
"build:dts:bundle": "ynpx dts-bundle-generator -o ./dist/index.d.ts ./src/index.ts --no-banner --inline-declare-global & echo build:dts:bundle",
"build:dts:copy": "copy .\\src\\index.d.ts .\\dist\\index.d.ts & echo build:dts",
"build:dts:tsc": "yarn run build:dts:tsc:emit && yarn run build:dts:copy",
"build:dts:tsc:emit": "tsc --emitDeclarationOnly --declaration --noEmit false",
"build:tsdx": "ynpx @bluelovers/tsdx build --target node",
"ci:install": "yarn install --frozen-lockfile && yarn add -W typescript@next jest ts-jest ts-node ynpx lerna yarn-tool",
"ci:build": "echo ci:build",
"npm:publish": "npm publish",
"npm:publish:bump": "yarn run version:bump && npm publish",
"preversion": "echo preversion && yarn run test",
"version": "echo version",
"version:bump": "yarn-tool version",
"postversion": "echo postversion",
"prepublish": "echo prepublish",
"prepare": "echo prepare",
"prepublishOnly": "yarn run preversion",
"prepublishOnly:check-bin": "ynpx --quiet @yarn-tool/check-pkg-bin",
"prepublishOnly:update": "yarn run ncu && yarn run sort-package-json",
"prepack": "echo prepack",
"pack": "echo pack",
"postpack": "echo postpack",
"publish": "echo publish",
"postpublish": "yarn run postpublish:changelog && yarn run postpublish:git:commit && yarn run postpublish:git:tag && yarn run postpublish:git:push",
"postpublish:changelog": "ynpx --quiet @yarn-tool/changelog && git add ./CHANGELOG.md",
"postpublish:git:commit": "git commit -m \"chore(release): publish\" . & echo postpublish:git:commit",
"postpublish:git:push": "git push --follow-tags",
"postpublish:git:tag": "ynpx --quiet @yarn-tool/tag",
"postpublishOnly": "echo postpublishOnly",
"ncu": "yarn-tool ncu -u",
"sort-package-json": "yarn-tool sort",
"tsc:showConfig": "ynpx get-current-tsconfig -p"
},
"devDependencies": {
"@alexjeffburke/deep-diff": "alexjeffburke/diff#alexjeffburke",
"@bluelovers/jest-config": "^1.0.4",
"@bluelovers/tsconfig": "^1.0.30",
"@flitbit/deep-diff": "npm:deep-diff@1.0.2",
"@flitbit/deep-diff-master": "flitbit/diff",
"@types/bluebird": "^3.5.36",
"@types/deep-diff": "^1.0.1",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"bluebird": "^3.7.2",
"deep-equal": "^2.0.5",
"expect.js": "^0.3.1",
"jest": "^28.1.3",
"json-ptr": "^3.1.1",
"lodash": "^4.17.21"
},
"packageManager": "yarn@1.22.19",
"publishConfig": {
"access": "public"
}
}