package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "stream-http",
  3. "version": "3.2.0",
  4. "description": "Streaming http in the browser",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/jhiesey/stream-http.git"
  9. },
  10. "scripts": {
  11. "test": "npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)",
  12. "test-node": "tape test/node/*.js",
  13. "test-browser": "airtap --concurrency 1 -- test/browser/*.js",
  14. "test-browser-local": "airtap --preset local -- test/browser/*.js"
  15. },
  16. "author": "John Hiesey",
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/jhiesey/stream-http/issues"
  20. },
  21. "homepage": "https://github.com/jhiesey/stream-http#readme",
  22. "keywords": [
  23. "http",
  24. "stream",
  25. "streaming",
  26. "xhr",
  27. "http-browserify"
  28. ],
  29. "dependencies": {
  30. "builtin-status-codes": "^3.0.0",
  31. "inherits": "^2.0.4",
  32. "readable-stream": "^3.6.0",
  33. "xtend": "^4.0.2"
  34. },
  35. "devDependencies": {
  36. "airtap": "^4.0.3",
  37. "airtap-manual": "^1.0.0",
  38. "airtap-sauce": "^1.1.0",
  39. "basic-auth": "^2.0.1",
  40. "brfs": "^2.0.2",
  41. "cookie-parser": "^1.4.5",
  42. "express": "^4.17.1",
  43. "tape": "^5.2.2",
  44. "ua-parser-js": "^0.7.28",
  45. "webworkify": "^1.5.0"
  46. }
  47. }