package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "xhr",
  3. "version": "2.6.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. "typings": "./index.d.ts",
  30. "dependencies": {
  31. "global": "~4.4.0",
  32. "is-function": "^1.0.1",
  33. "parse-headers": "^2.0.0",
  34. "xtend": "^4.0.0"
  35. },
  36. "devDependencies": {
  37. "for-each": "^0.3.2",
  38. "pre-commit": "1.2.2",
  39. "run-browser": "naugtur/run-browser",
  40. "tap-spec": "^4.0.2",
  41. "tape": "^4.0.0"
  42. },
  43. "license": "MIT",
  44. "scripts": {
  45. "test": "run-browser test/index.js -b -m test/mock-server.js | tap-spec",
  46. "browser": "run-browser -m test/mock-server.js test/index.js"
  47. }
  48. }