package.json 852 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "centra",
  3. "version": "2.7.0",
  4. "description": "The core lightweight HTTP client for Node",
  5. "main": "createRequest.js",
  6. "scripts": {
  7. "test": "node test.js --test-force-exit",
  8. "prepublishOnly": "npm test"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/ethanent/centra.git"
  13. },
  14. "files": [
  15. "model/CentraRequest.js",
  16. "model/CentraResponse.js",
  17. "createRequest.js"
  18. ],
  19. "keywords": [
  20. "http",
  21. "https",
  22. "request",
  23. "fetch",
  24. "url",
  25. "lightweight"
  26. ],
  27. "author": "Ethan Davis",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/ethanent/centra/issues"
  31. },
  32. "homepage": "https://github.com/ethanent/centra",
  33. "devDependencies": {
  34. "body-parser": "^1.20.2",
  35. "express": "^4.19.2"
  36. },
  37. "dependencies": {
  38. "follow-redirects": "^1.15.6"
  39. }
  40. }