package.json 730 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@overleaf/promise-utils",
  3. "version": "0.1.0",
  4. "description": "utilities to help working with promises",
  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. "chai": "^4.3.10",
  19. "chai-as-promised": "^7.1.1",
  20. "mocha": "^10.2.0"
  21. },
  22. "dependencies": {
  23. "p-limit": "^2.3.0"
  24. }
  25. }