package.json 999 B

1234567891011121314151617181920212223242526272829
  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. "types"
  8. ],
  9. "author": "Overleaf (https://www.overleaf.com)",
  10. "private": true,
  11. "scripts": {
  12. "lint": "eslint --cache --cache-location ../../.cache/eslint/ --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
  13. "lint:fix": "eslint --cache --cache-location ../../.cache/eslint/ --fix --ext .cjs,.js,.jsx,.mjs,.ts .",
  14. "test": "yarn run lint && yarn run types:check && yarn run test:unit",
  15. "test:ci": "yarn run test:unit",
  16. "test:unit": "mocha --exit test/**/*.{js,cjs}",
  17. "types:check": "tsc --noEmit"
  18. },
  19. "devDependencies": {
  20. "@types/node": "^24.5.2",
  21. "chai": "^4.3.6",
  22. "core-js": "~3.46.0",
  23. "eslint": "^10.4.0",
  24. "mocha": "^11.1.0",
  25. "mocha-junit-reporter": "^2.2.1",
  26. "mocha-multi-reporters": "^1.5.1",
  27. "typescript": "^5.0.4"
  28. }
  29. }