package.json 703 B

123456789101112131415161718192021
  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 --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
  9. "lint:fix": "eslint --fix --ext .cjs,.js,.jsx,.mjs,.ts .",
  10. "test": "npm run lint && npm run types:check && npm run test:unit",
  11. "test:ci": "npm run test:unit",
  12. "test:unit": "mocha --exit test/**/*.{js,cjs}",
  13. "types:check": "tsc --noEmit"
  14. },
  15. "devDependencies": {
  16. "mocha": "^11.1.0",
  17. "mocha-junit-reporter": "^2.2.1",
  18. "mocha-multi-reporters": "^1.5.1",
  19. "typescript": "^5.0.4"
  20. }
  21. }