package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "xhr",
  3. "version": "2.4.0",
  4. "description": "small xhr abstraction",
  5. "keywords": [
  6. "xhr",
  7. "http",
  8. "xmlhttprequest",
  9. "xhr2",
  10. "browserify"
  11. ],
  12. "author": "Raynos <raynos2@gmail.com>",
  13. "repository": "git://github.com/naugtur/xhr.git",
  14. "main": "index",
  15. "homepage": "https://github.com/naugtur/xhr",
  16. "contributors": [
  17. {
  18. "name": "Jake Verbaten"
  19. },
  20. {
  21. "name": "Zbyszek Tenerowicz",
  22. "email": "naugtur@gmail.com"
  23. }
  24. ],
  25. "bugs": {
  26. "url": "https://github.com/naugtur/xhr/issues",
  27. "email": "naugtur@gmail.com"
  28. },
  29. "dependencies": {
  30. "global": "~4.3.0",
  31. "is-function": "^1.0.1",
  32. "parse-headers": "^2.0.0",
  33. "xtend": "^4.0.0"
  34. },
  35. "devDependencies": {
  36. "for-each": "^0.3.2",
  37. "pre-commit": "1.0.10",
  38. "run-browser": "naugtur/run-browser",
  39. "tap-spec": "^4.0.2",
  40. "tape": "^4.0.0"
  41. },
  42. "license": "MIT",
  43. "scripts": {
  44. "test": "run-browser test/index.js -b -m test/mock-server.js | tap-spec",
  45. "browser": "run-browser -m test/mock-server.js test/index.js"
  46. }
  47. }