package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "teeny-request",
  3. "version": "9.0.0",
  4. "description": "Like request, but smaller.",
  5. "main": "./build/src/index.js",
  6. "types": "./build/src/index.d.ts",
  7. "engines": {
  8. "node": ">=14"
  9. },
  10. "scripts": {
  11. "test": "c8 mocha build/test",
  12. "compile": "tsc -p .",
  13. "pretest": "npm run compile",
  14. "lint": "gts check",
  15. "clean": "gts clean",
  16. "fix": "gts fix",
  17. "prepare": "npm run compile",
  18. "docs": "compodoc src/",
  19. "predocs-test": "npm run docs",
  20. "docs-test": "linkinator docs",
  21. "samples-test": "echo no sample tests!",
  22. "system-test": "echo no system tests!",
  23. "precompile": "gts clean"
  24. },
  25. "files": [
  26. "build/src"
  27. ],
  28. "repository": "googleapis/teeny-request",
  29. "keywords": [
  30. "request",
  31. "node-fetch",
  32. "fetch"
  33. ],
  34. "author": "fhinkel",
  35. "license": "Apache-2.0",
  36. "bugs": {
  37. "url": "https://github.com/googleapis/teeny-request/issues"
  38. },
  39. "homepage": "https://github.com/googleapis/teeny-request#readme",
  40. "dependencies": {
  41. "http-proxy-agent": "^5.0.0",
  42. "https-proxy-agent": "^5.0.0",
  43. "node-fetch": "^2.6.9",
  44. "stream-events": "^1.0.5",
  45. "uuid": "^9.0.0"
  46. },
  47. "devDependencies": {
  48. "@babel/plugin-proposal-private-methods": "^7.18.6",
  49. "@compodoc/compodoc": "^1.1.9",
  50. "@types/mocha": "^10.0.0",
  51. "@types/node-fetch": "^2.5.7",
  52. "@types/sinon": "^10.0.0",
  53. "@types/uuid": "^9.0.0",
  54. "c8": "^8.0.0",
  55. "codecov": "^3.1.0",
  56. "gts": "^3.1.1",
  57. "linkinator": "^4.0.0",
  58. "mocha": "^10.0.0",
  59. "nock": "^13.0.0",
  60. "sinon": "^15.0.0",
  61. "typescript": "^5.1.6"
  62. },
  63. "nyc": {
  64. "exclude": [
  65. "build/test"
  66. ]
  67. }
  68. }