package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "diff",
  3. "version": "7.0.0",
  4. "description": "A JavaScript text diff implementation.",
  5. "keywords": [
  6. "diff",
  7. "jsdiff",
  8. "compare",
  9. "patch",
  10. "text",
  11. "json",
  12. "css",
  13. "javascript"
  14. ],
  15. "maintainers": [
  16. "Kevin Decker <kpdecker@gmail.com> (http://incaseofstairs.com)",
  17. "Mark Amery <markrobertamery+jsdiff@gmail.com>"
  18. ],
  19. "bugs": {
  20. "email": "kpdecker@gmail.com",
  21. "url": "http://github.com/kpdecker/jsdiff/issues"
  22. },
  23. "license": "BSD-3-Clause",
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/kpdecker/jsdiff.git"
  27. },
  28. "engines": {
  29. "node": ">=0.3.1"
  30. },
  31. "main": "./lib/index.js",
  32. "module": "./lib/index.es6.js",
  33. "browser": "./dist/diff.js",
  34. "unpkg": "./dist/diff.js",
  35. "exports": {
  36. ".": {
  37. "import": "./lib/index.mjs",
  38. "require": "./lib/index.js"
  39. },
  40. "./package.json": "./package.json",
  41. "./": "./",
  42. "./*": "./*"
  43. },
  44. "scripts": {
  45. "clean": "rm -rf lib/ dist/",
  46. "build:node": "yarn babel --out-dir lib --source-maps=inline src",
  47. "test": "grunt"
  48. },
  49. "devDependencies": {
  50. "@babel/cli": "^7.24.1",
  51. "@babel/core": "^7.24.1",
  52. "@babel/plugin-transform-modules-commonjs": "^7.24.1",
  53. "@babel/preset-env": "^7.24.1",
  54. "@babel/register": "^7.23.7",
  55. "@colors/colors": "^1.6.0",
  56. "babel-eslint": "^10.0.1",
  57. "babel-loader": "^9.1.3",
  58. "chai": "^4.2.0",
  59. "eslint": "^5.12.0",
  60. "grunt": "^1.6.1",
  61. "grunt-babel": "^8.0.0",
  62. "grunt-cli": "^1.4.3",
  63. "grunt-contrib-clean": "^2.0.1",
  64. "grunt-contrib-copy": "^1.0.0",
  65. "grunt-contrib-uglify": "^5.2.2",
  66. "grunt-contrib-watch": "^1.1.0",
  67. "grunt-eslint": "^24.3.0",
  68. "grunt-exec": "^3.0.0",
  69. "grunt-karma": "^4.0.2",
  70. "grunt-mocha-istanbul": "^5.0.2",
  71. "grunt-mocha-test": "^0.13.3",
  72. "grunt-webpack": "^6.0.0",
  73. "istanbul": "github:kpdecker/istanbul",
  74. "karma": "^6.4.3",
  75. "karma-chrome-launcher": "^3.2.0",
  76. "karma-mocha": "^2.0.1",
  77. "karma-mocha-reporter": "^2.2.5",
  78. "karma-sourcemap-loader": "^0.4.0",
  79. "karma-webpack": "^5.0.1",
  80. "mocha": "^7.0.0",
  81. "rollup": "^4.13.0",
  82. "rollup-plugin-babel": "^4.2.0",
  83. "semver": "^7.6.0",
  84. "webpack": "^5.90.3",
  85. "webpack-dev-server": "^5.0.3"
  86. },
  87. "optionalDependencies": {}
  88. }