package.json 619 B

123456789101112131415161718192021
  1. {
  2. "name": "@overleaf/ranges-tracker",
  3. "description": "Shared logic for syncing comments and tracked changes with operational transforms",
  4. "main": "index.cjs",
  5. "files": [
  6. "index.cjs"
  7. ],
  8. "author": "Overleaf (https://www.overleaf.com)",
  9. "private": true,
  10. "scripts": {
  11. "lint": "eslint --max-warnings 0 --format unix .",
  12. "lint:fix": "eslint --fix .",
  13. "format": "prettier --list-different $PWD/'**/*.js'",
  14. "format:fix": "prettier --write $PWD/'**/*.js'",
  15. "test": "mocha --recursive test/unit/src/",
  16. "test:ci": "npm run test"
  17. },
  18. "devDependencies": {
  19. "mocha": "^10.0.0"
  20. }
  21. }