用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.2 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. {
  2. "name": "stream-http",
  3. "version": "2.8.2",
  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 --loopback airtap.local -- test/browser/*.js",
  14. "test-browser-local": "airtap --no-instrument --local 8080 -- 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.1",
  32. "readable-stream": "^2.3.6",
  33. "to-arraybuffer": "^1.0.0",
  34. "xtend": "^4.0.0"
  35. },
  36. "devDependencies": {
  37. "airtap": "^0.0.5",
  38. "basic-auth": "^2.0.0",
  39. "brfs": "^1.6.1",
  40. "cookie-parser": "^1.4.3",
  41. "express": "^4.16.3",
  42. "tape": "^4.9.0",
  43. "ua-parser-js": "^0.7.18",
  44. "webworkify": "^1.5.0"
  45. }
  46. }