版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

88 строки
2.2 KiB

  1. {
  2. "name": "diff",
  3. "version": "5.1.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. ],
  18. "bugs": {
  19. "email": "kpdecker@gmail.com",
  20. "url": "http://github.com/kpdecker/jsdiff/issues"
  21. },
  22. "license": "BSD-3-Clause",
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/kpdecker/jsdiff.git"
  26. },
  27. "engines": {
  28. "node": ">=0.3.1"
  29. },
  30. "main": "./lib/index.js",
  31. "module": "./lib/index.es6.js",
  32. "browser": "./dist/diff.js",
  33. "unpkg": "./dist/diff.js",
  34. "exports": {
  35. ".": {
  36. "import": "./lib/index.mjs",
  37. "require": "./lib/index.js"
  38. },
  39. "./package.json": "./package.json",
  40. "./": "./"
  41. },
  42. "scripts": {
  43. "clean": "rm -rf lib/ dist/",
  44. "build:node": "yarn babel --out-dir lib --source-maps=inline src",
  45. "test": "grunt"
  46. },
  47. "devDependencies": {
  48. "@babel/cli": "^7.2.3",
  49. "@babel/core": "^7.2.2",
  50. "@babel/plugin-transform-modules-commonjs": "^7.2.0",
  51. "@babel/preset-env": "^7.2.3",
  52. "@babel/register": "^7.0.0",
  53. "babel-eslint": "^10.0.1",
  54. "babel-loader": "^8.0.5",
  55. "chai": "^4.2.0",
  56. "colors": "^1.3.3",
  57. "eslint": "^5.12.0",
  58. "grunt": "^1.0.3",
  59. "grunt-babel": "^8.0.0",
  60. "grunt-cli": "^1.3.2",
  61. "grunt-contrib-clean": "^2.0.0",
  62. "grunt-contrib-copy": "^1.0.0",
  63. "grunt-contrib-uglify": "^5.0.0",
  64. "grunt-contrib-watch": "^1.1.0",
  65. "grunt-eslint": "^23.0.0",
  66. "grunt-exec": "^3.0.0",
  67. "grunt-karma": "^4.0.0",
  68. "grunt-mocha-istanbul": "^5.0.2",
  69. "grunt-mocha-test": "^0.13.3",
  70. "grunt-webpack": "^3.1.3",
  71. "istanbul": "github:kpdecker/istanbul",
  72. "karma": "^5.1.1",
  73. "karma-chrome-launcher": "^3.1.0",
  74. "karma-mocha": "^2.0.1",
  75. "karma-mocha-reporter": "^2.0.0",
  76. "karma-sauce-launcher": "^4.1.5",
  77. "karma-sourcemap-loader": "^0.3.6",
  78. "karma-webpack": "^4.0.2",
  79. "mocha": "^6.0.0",
  80. "rollup": "^1.0.2",
  81. "rollup-plugin-babel": "^4.2.0",
  82. "semver": "^7.3.2",
  83. "webpack": "^4.28.3",
  84. "webpack-dev-server": "^3.1.14"
  85. },
  86. "optionalDependencies": {}
  87. }