package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "urllib",
  3. "version": "2.38.1",
  4. "description": "Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.",
  5. "keywords": [
  6. "urllib",
  7. "http",
  8. "urlopen",
  9. "curl",
  10. "wget",
  11. "request",
  12. "https"
  13. ],
  14. "author": "fengmk2 <fengmk2@gmail.com> (https://fengmk2.com)",
  15. "homepage": "https://github.com/node-modules/urllib",
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "files": [
  19. "lib"
  20. ],
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/node-modules/urllib.git"
  24. },
  25. "scripts": {
  26. "tsd": "node test/tsd.js",
  27. "test-local": "mocha -t 30000 -r intelli-espower-loader test/*.test.js",
  28. "test": "npm run lint && npm run test-local",
  29. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r intelli-espower-loader test/*.test.js",
  30. "ci": "npm run lint && npm run tsd && npm run test-cov",
  31. "lint": "jshint .",
  32. "autod": "autod -w --prefix '^' -t test -e examples",
  33. "contributor": "git-contributor"
  34. },
  35. "dependencies": {
  36. "any-promise": "^1.3.0",
  37. "content-type": "^1.0.2",
  38. "debug": "^2.6.9",
  39. "default-user-agent": "^1.0.0",
  40. "digest-header": "^0.0.1",
  41. "ee-first": "~1.1.1",
  42. "formstream": "^1.1.0",
  43. "humanize-ms": "^1.2.0",
  44. "iconv-lite": "^0.4.15",
  45. "ip": "^1.1.5",
  46. "proxy-agent": "^5.0.0",
  47. "pump": "^3.0.0",
  48. "qs": "^6.4.0",
  49. "statuses": "^1.3.1",
  50. "utility": "^1.16.1"
  51. },
  52. "devDependencies": {
  53. "@types/mocha": "^5.2.5",
  54. "@types/node": "^10.12.18",
  55. "agentkeepalive": "^4.0.0",
  56. "autod": "*",
  57. "benchmark": "^2.1.4",
  58. "bluebird": "*",
  59. "busboy": "^0.2.14",
  60. "co": "*",
  61. "coffee": "1",
  62. "egg-ci": "^1.15.0",
  63. "git-contributor": "^1.0.10",
  64. "http-proxy": "^1.16.2",
  65. "intelli-espower-loader": "^1.0.1",
  66. "istanbul": "*",
  67. "jshint": "*",
  68. "mkdirp": "^0.5.1",
  69. "mocha": "3",
  70. "muk": "^0.5.3",
  71. "pedding": "^1.1.0",
  72. "power-assert": "^1.4.2",
  73. "semver": "5",
  74. "spy": "^1.0.0",
  75. "tar": "^4.4.8",
  76. "through2": "^2.0.3",
  77. "tsd": "^0.18.0",
  78. "typescript": "^4.4.4"
  79. },
  80. "engines": {
  81. "node": ">= 0.10.0"
  82. },
  83. "ci": {
  84. "type": "github",
  85. "os": {
  86. "github": "linux, windows, macos"
  87. },
  88. "version": "8, 10, 12, 14, 16"
  89. },
  90. "license": "MIT"
  91. }