package.json 1007 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@overleaf/fetch-utils",
  3. "version": "0.1.0",
  4. "description": "utilities for node-fetch",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "npm run lint && npm run types:check && npm run test:unit",
  8. "lint": "eslint --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
  9. "lint:fix": "eslint --fix --ext .cjs,.js,.jsx,.mjs,.ts .",
  10. "test:ci": "npm run test:unit",
  11. "test:unit": "mocha --exit test/**/*.{js,cjs}",
  12. "types:check": "tsc --noEmit"
  13. },
  14. "author": "Overleaf (https://www.overleaf.com)",
  15. "license": "AGPL-3.0-only",
  16. "devDependencies": {
  17. "@types/node-fetch": "^2.6.13",
  18. "body-parser": "1.20.4",
  19. "chai": "^4.3.6",
  20. "chai-as-promised": "^7.1.1",
  21. "express": "4.22.1",
  22. "mocha": "^11.1.0",
  23. "mocha-junit-reporter": "^2.2.1",
  24. "mocha-multi-reporters": "^1.5.1",
  25. "typescript": "^5.0.4"
  26. },
  27. "dependencies": {
  28. "@overleaf/o-error": "*",
  29. "lodash": "^4.17.21",
  30. "node-fetch": "^2.7.0",
  31. "selfsigned": "^2.4.1"
  32. }
  33. }