package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "agent-base",
  3. "version": "6.0.2",
  4. "description": "Turn a function into an `http.Agent` instance",
  5. "main": "dist/src/index",
  6. "typings": "dist/src/index",
  7. "files": [
  8. "dist/src",
  9. "src"
  10. ],
  11. "scripts": {
  12. "prebuild": "rimraf dist",
  13. "build": "tsc",
  14. "postbuild": "cpy --parents src test '!**/*.ts' dist",
  15. "test": "mocha --reporter spec dist/test/*.js",
  16. "test-lint": "eslint src --ext .js,.ts",
  17. "prepublishOnly": "npm run build"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/TooTallNate/node-agent-base.git"
  22. },
  23. "keywords": [
  24. "http",
  25. "agent",
  26. "base",
  27. "barebones",
  28. "https"
  29. ],
  30. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/TooTallNate/node-agent-base/issues"
  34. },
  35. "dependencies": {
  36. "debug": "4"
  37. },
  38. "devDependencies": {
  39. "@types/debug": "4",
  40. "@types/mocha": "^5.2.7",
  41. "@types/node": "^14.0.20",
  42. "@types/semver": "^7.1.0",
  43. "@types/ws": "^6.0.3",
  44. "@typescript-eslint/eslint-plugin": "1.6.0",
  45. "@typescript-eslint/parser": "1.1.0",
  46. "async-listen": "^1.2.0",
  47. "cpy-cli": "^2.0.0",
  48. "eslint": "5.16.0",
  49. "eslint-config-airbnb": "17.1.0",
  50. "eslint-config-prettier": "4.1.0",
  51. "eslint-import-resolver-typescript": "1.1.1",
  52. "eslint-plugin-import": "2.16.0",
  53. "eslint-plugin-jsx-a11y": "6.2.1",
  54. "eslint-plugin-react": "7.12.4",
  55. "mocha": "^6.2.0",
  56. "rimraf": "^3.0.0",
  57. "semver": "^7.1.2",
  58. "typescript": "^3.5.3",
  59. "ws": "^3.0.0"
  60. },
  61. "engines": {
  62. "node": ">= 6.0.0"
  63. }
  64. }