1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "name": "deep-diff",
- "description": "Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.",
- "version": "1.0.2",
- "license": "MIT",
- "keywords": [
- "diff",
- "difference",
- "compare",
- "change-tracking"
- ],
- "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>"
- ],
- "repository": {
- "type": "git",
- "url": "git://github.com/flitbit/diff.git"
- },
- "main": "./index.js",
- "scripts": {
- "prerelease": "npm run clean && npm run test",
- "release": "uglifyjs -c -m -o dist/deep-diff.min.js --source-map -r '$,require,exports,self,module,define,navigator' index.js",
- "clean": "rimraf dist && mkdir dist",
- "preversion": "npm run release",
- "postversion": "git push && git push --tags",
- "pretest": "npm run lint",
- "test": "mocha test/**/*.js",
- "test:watch": "nodemon --ext js,json --ignore dist/ --exec 'npm test'",
- "preci": "npm run lint",
- "ci": "mocha --reporter mocha-junit-reporter test/**/*.js",
- "lint": "eslint index.js test"
- },
- "devDependencies": {
- "bluebird": "^3.5.1",
- "deep-equal": "^1.0.1",
- "eslint": "^4.19.1",
- "eslint-plugin-mocha": "^5.0.0",
- "expect.js": "^0.3.1",
- "json": "^9.0.6",
- "json-ptr": "^1.1.0",
- "lodash": "^4.17.10",
- "mocha": "^5.1.1",
- "mocha-junit-reporter": "^1.17.0",
- "nodemon": "^1.17.4",
- "rimraf": "^2.6.2",
- "uglify-js": "^3.3.25"
- }
- }
|