package.json 828 B

1234567891011121314151617181920212223242526272829
  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 format && npm run test:unit",
  8. "test:unit": "mocha",
  9. "lint": "eslint --max-warnings 0 --format unix .",
  10. "lint:fix": "eslint --fix .",
  11. "format": "prettier --list-different $PWD/'**/*.js'",
  12. "format:fix": "prettier --write $PWD/'**/*.js'",
  13. "test:ci": "npm run test:unit"
  14. },
  15. "author": "Overleaf (https://www.overleaf.com)",
  16. "license": "AGPL-3.0-only",
  17. "devDependencies": {
  18. "body-parser": "^1.20.2",
  19. "chai": "^4.3.6",
  20. "chai-as-promised": "^7.1.1",
  21. "express": "^4.18.2",
  22. "mocha": "^10.2.0"
  23. },
  24. "dependencies": {
  25. "@overleaf/o-error": "*",
  26. "lodash": "^4.17.21",
  27. "node-fetch": "^2.6.11"
  28. }
  29. }