package.json 534 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "fast-diff",
  3. "version": "1.2.0",
  4. "description": "Fast Javascript text diff",
  5. "author": "Jason Chen <jhchen7@gmail.com>",
  6. "main": "diff.js",
  7. "types": "diff.d.ts",
  8. "devDependencies": {
  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": [
  24. "diff"
  25. ]
  26. }