package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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": "yarn run lint && yarn run types:check && yarn run test:unit",
  8. "lint": "eslint --cache --cache-location ../../.cache/eslint/ --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
  9. "lint:fix": "eslint --cache --cache-location ../../.cache/eslint/ --fix --ext .cjs,.js,.jsx,.mjs,.ts .",
  10. "test:ci": "yarn run test:unit",
  11. "test:unit": "mocha --exit test/**/*.{js,cjs}",
  12. "types:check": "tsc --noEmit"
  13. },
  14. "author": "team@overleaf.com",
  15. "license": "Proprietary",
  16. "private": true,
  17. "devDependencies": {
  18. "@types/check-types": "^7.3.7",
  19. "@types/path-browserify": "^1.0.3",
  20. "chai": "^3.3.0",
  21. "mocha": "^11.1.0",
  22. "mocha-junit-reporter": "^2.2.1",
  23. "mocha-multi-reporters": "^1.5.1",
  24. "sinon": "^9.2.4",
  25. "typescript": "^5.0.4"
  26. },
  27. "dependencies": {
  28. "@overleaf/o-error": "workspace:*",
  29. "check-types": "^5.1.0",
  30. "lodash": "^4.18.1",
  31. "p-map": "^4.0.0",
  32. "path-browserify": "^1.0.1"
  33. }
  34. }