package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "deep-diff",
  3. "description": "Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.",
  4. "version": "1.0.2",
  5. "license": "MIT",
  6. "keywords": [
  7. "diff",
  8. "difference",
  9. "compare",
  10. "change-tracking"
  11. ],
  12. "author": "Phillip Clark <phillip@flitbit.com>",
  13. "contributors": [
  14. "Simen Bekkhus <sbekkhus91@gmail.com>",
  15. "Paul Pflugradt <paulpflugradt@googlemail.com>",
  16. "wooorm <tituswormer@gmail.com>",
  17. "Nicholas Calugar <njcalugar@gmail.com>",
  18. "Yandell <hyandell@amazon.com>",
  19. "Thiago Santos <thia.mdossantos@gmail.com>",
  20. "Steve Mao <maochenyan@gmail.com>",
  21. "Mats Bryntse <mats.dev@bryntum.com>",
  22. "Phillip Clark <pclark@leisurelink.com>",
  23. "ZauberNerd <zaubernerd@zaubernerd.de>",
  24. "ravishivt <javishi@gmail.com>",
  25. "Daniel Spangler <daniel.spangler@gmail.com>",
  26. "Sam Beran <sberan@gmail.com>",
  27. "Thomas de Barochez <thomas.barochez+github@gmail.com>",
  28. "Morton Fox <github@qslw.com>",
  29. "Amila Welihinda <amilajack@users.noreply.github.com>",
  30. "Will Biddy <willbiddy@gmail.com>",
  31. "icesoar <icesoar@hotmail.com>",
  32. "Serkan Serttop <serkanserttop@yahoo.com>",
  33. "orlando <operri@opentable.com>",
  34. "Tom MacWright <tmcw@users.noreply.github.com>",
  35. "Denning <denningj@amazon.com>",
  36. "Dan Drinkard <dan.drinkard@gmail.com>",
  37. "Elad Efrat <elad@iNNU.ORG>",
  38. "caasi Huang <caasi.igd@gmail.com>",
  39. "Tom Ashworth <tashworth@twitter.com>"
  40. ],
  41. "repository": {
  42. "type": "git",
  43. "url": "git://github.com/flitbit/diff.git"
  44. },
  45. "main": "./index.js",
  46. "scripts": {
  47. "prerelease": "npm run clean && npm run test",
  48. "release": "uglifyjs -c -m -o dist/deep-diff.min.js --source-map -r '$,require,exports,self,module,define,navigator' index.js",
  49. "clean": "rimraf dist && mkdir dist",
  50. "preversion": "npm run release",
  51. "postversion": "git push && git push --tags",
  52. "pretest": "npm run lint",
  53. "test": "mocha test/**/*.js",
  54. "test:watch": "nodemon --ext js,json --ignore dist/ --exec 'npm test'",
  55. "preci": "npm run lint",
  56. "ci": "mocha --reporter mocha-junit-reporter test/**/*.js",
  57. "lint": "eslint index.js test"
  58. },
  59. "devDependencies": {
  60. "bluebird": "^3.5.1",
  61. "deep-equal": "^1.0.1",
  62. "eslint": "^4.19.1",
  63. "eslint-plugin-mocha": "^5.0.0",
  64. "expect.js": "^0.3.1",
  65. "json": "^9.0.6",
  66. "json-ptr": "^1.1.0",
  67. "lodash": "^4.17.10",
  68. "mocha": "^5.1.1",
  69. "mocha-junit-reporter": "^1.17.0",
  70. "nodemon": "^1.17.4",
  71. "rimraf": "^2.6.2",
  72. "uglify-js": "^3.3.25"
  73. }
  74. }