package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "diffpatcher",
  3. "id": "diffpatcher",
  4. "version": "1.2.0",
  5. "description": "Utilities for diff-ing & patch-ing hashes",
  6. "keywords": [
  7. "diff", "patch", "rebase", "hash", "changes", "versions"
  8. ],
  9. "author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
  10. "homepage": "https://github.com/Gozala/diffpatcher",
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/Gozala/diffpatcher.git",
  14. "web": "https://github.com/Gozala/diffpatcher"
  15. },
  16. "bugs": {
  17. "url": "http://github.com/Gozala/diffpatcher/issues/"
  18. },
  19. "dependencies": {
  20. "method": "~2.0.0"
  21. },
  22. "devDependencies": {
  23. "test": "~0.x.0",
  24. "phantomify": "~0.x.0",
  25. "retape": "~0.x.0",
  26. "tape": "~0.1.5"
  27. },
  28. "main": "./index.js",
  29. "scripts": {
  30. "test": "npm run test-node && npm run test-browser",
  31. "test-browser": "node ./node_modules/phantomify/bin/cmd.js ./test/common.js",
  32. "test-node": "node ./test/common.js",
  33. "test-tap": "node ./test/tap.js"
  34. },
  35. "testling": {
  36. "files": "test/tap.js",
  37. "browsers": [
  38. "ie/9..latest",
  39. "chrome/25..latest",
  40. "firefox/20..latest",
  41. "safari/6..latest",
  42. "opera/11.0..latest",
  43. "iphone/6..latest",
  44. "ipad/6..latest",
  45. "android-browser/4.2..latest"
  46. ]
  47. },
  48. "licenses": [
  49. {
  50. "type": "MIT",
  51. "url": "https://github.com/Gozala/diffpatcher/License.md"
  52. }
  53. ]
  54. }