package.json 827 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "overleaf-editor-core",
  3. "version": "1.0.0",
  4. "description": "Library shared between the editor server and clients.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "format": "prettier --list-different $PWD/'**/*.js'",
  9. "format:fix": "prettier --write $PWD/'**/*.js'",
  10. "lint": "eslint --max-warnings 0 --format unix lib test && tsc",
  11. "lint:fix": "eslint --fix lib test",
  12. "test:ci": "npm run test",
  13. "coverage": "istanbul cover _mocha"
  14. },
  15. "author": "team@overleaf.com",
  16. "license": "Proprietary",
  17. "private": true,
  18. "devDependencies": {
  19. "chai": "^3.3.0",
  20. "istanbul": "^0.4.5",
  21. "mocha": "^10.2.0",
  22. "typescript": "^5.0.4"
  23. },
  24. "dependencies": {
  25. "@overleaf/o-error": "*",
  26. "check-types": "^5.1.0",
  27. "lodash": "^4.17.19",
  28. "p-map": "^4.0.0"
  29. }
  30. }