package.json 940 B

1234567891011121314151617181920212223242526
  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 ../../node_modules/.cache/eslint/ --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
  13. "lint:fix": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --fix --ext .cjs,.js,.jsx,.mjs,.ts .",
  14. "test": "npm run lint && npm run types:check && npm run test:unit",
  15. "test:ci": "npm run test:unit",
  16. "test:unit": "mocha --exit test/**/*.{js,cjs}",
  17. "types:check": "tsc --noEmit"
  18. },
  19. "devDependencies": {
  20. "chai": "^4.3.6",
  21. "mocha": "^11.1.0",
  22. "mocha-junit-reporter": "^2.2.1",
  23. "mocha-multi-reporters": "^1.5.1",
  24. "typescript": "^5.0.4"
  25. }
  26. }