package.json 664 B

12345678910111213141516171819202122
  1. {
  2. "name": "@overleaf/stream-utils",
  3. "version": "0.1.0",
  4. "description": "stream handling utilities",
  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.6",
  19. "chai-as-promised": "^7.1.1",
  20. "mocha": "^10.2.0"
  21. }
  22. }