package.json 530 B

123456789101112131415161718192021222324
  1. {
  2. "name": "fast-diff",
  3. "version": "1.1.2",
  4. "description": "Fast Javascript text diff",
  5. "author": "Jason Chen <jhchen7@gmail.com>",
  6. "main": "diff.js",
  7. "devDependencies": {
  8. "googlediff": "~0.1.0",
  9. "lodash": "~3.9.3",
  10. "seedrandom": "~2.4.0"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/jhchen/fast-diff"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/jhchen/fast-diff/issues"
  18. },
  19. "scripts": {
  20. "test": "node test.js"
  21. },
  22. "license": "Apache-2.0",
  23. "keywords": ["diff"]
  24. }