package.json 987 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "quill-delta",
  3. "version": "3.6.3",
  4. "description": "Format for representing rich text documents and changes.",
  5. "author": "Jason Chen <jhchen7@gmail.com>",
  6. "homepage": "https://github.com/quilljs/delta",
  7. "main": "lib/delta.js",
  8. "dependencies": {
  9. "deep-equal": "^1.0.1",
  10. "extend": "^3.0.2",
  11. "fast-diff": "1.1.2"
  12. },
  13. "devDependencies": {
  14. "coveralls": "^3.0.2",
  15. "istanbul": "~0.4.5",
  16. "jasmine": "^3.1.0"
  17. },
  18. "engines": {
  19. "node": ">=0.10"
  20. },
  21. "license": "MIT",
  22. "scripts": {
  23. "test": "jasmine test/*.js test/**/*.js",
  24. "test:coverage": "istanbul cover jasmine test/**/*.js",
  25. "test:coverage:report": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/quilljs/delta"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/quilljs/delta/issues"
  33. },
  34. "keywords": [
  35. "rich text",
  36. "ot",
  37. "operational transform",
  38. "delta"
  39. ]
  40. }