package.json 864 B

12345678910111213141516171819202122232425262728293031
  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. "@types/bluebird": "^3.5.30",
  20. "chai": "^3.3.0",
  21. "istanbul": "^0.4.5",
  22. "mocha": "^10.2.0",
  23. "typescript": "^5.0.4"
  24. },
  25. "dependencies": {
  26. "@overleaf/o-error": "*",
  27. "bluebird": "^3.1.1",
  28. "check-types": "^5.1.0",
  29. "lodash": "^4.17.19"
  30. }
  31. }