package.json 854 B

1234567891011121314151617181920212223
  1. {
  2. "name": "@overleaf/settings",
  3. "description": "A centralised settings system for Overleaf",
  4. "version": "3.0.0",
  5. "repository": "overleaf/settings-module",
  6. "main": "index.js",
  7. "scripts": {
  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": "yarn run lint && yarn run types:check && yarn run test:unit",
  11. "test:ci": "yarn run test:unit",
  12. "test:unit": "mocha --exit test/**/*.{js,cjs}",
  13. "types:check": "tsc --noEmit"
  14. },
  15. "devDependencies": {
  16. "@types/node": "^24.5.2",
  17. "eslint": "^10.4.0",
  18. "mocha": "^11.1.0",
  19. "mocha-junit-reporter": "^2.2.1",
  20. "mocha-multi-reporters": "^1.5.1",
  21. "typescript": "^5.0.4"
  22. }
  23. }