package.json 938 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@overleaf/access-token-encryptor",
  3. "version": "3.0.0",
  4. "description": "",
  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 ../../node_modules/.cache/eslint/ --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
  9. "lint:fix": "eslint --cache --cache-location ../../node_modules/.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": "",
  15. "license": "AGPL-3.0-only",
  16. "dependencies": {
  17. "lodash": "^4.18.1"
  18. },
  19. "devDependencies": {
  20. "chai": "^4.3.6",
  21. "chai-as-promised": "^7.1.1",
  22. "mocha": "^11.1.0",
  23. "mocha-junit-reporter": "^2.2.1",
  24. "mocha-multi-reporters": "^1.5.1",
  25. "sandboxed-module": "^2.0.4",
  26. "typescript": "^5.0.4"
  27. }
  28. }