package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@overleaf/access-token-encryptor",
  3. "version": "3.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./*": "./*"
  9. },
  10. "scripts": {
  11. "test": "yarn run lint && yarn run types:check && yarn run test:unit",
  12. "lint": "eslint --cache --cache-location ../../.cache/eslint/ --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
  13. "lint:fix": "eslint --cache --cache-location ../../.cache/eslint/ --fix --ext .cjs,.js,.jsx,.mjs,.ts .",
  14. "test:ci": "yarn run test:unit",
  15. "test:unit": "mocha --exit test/**/*.{js,cjs}",
  16. "types:check": "tsc --noEmit"
  17. },
  18. "author": "",
  19. "license": "AGPL-3.0-only",
  20. "dependencies": {
  21. "lodash": "^4.18.1"
  22. },
  23. "devDependencies": {
  24. "@types/node": "^24.5.2",
  25. "chai": "^4.3.6",
  26. "chai-as-promised": "^7.1.1",
  27. "eslint": "^10.4.0",
  28. "mocha": "^11.1.0",
  29. "mocha-junit-reporter": "^2.2.1",
  30. "mocha-multi-reporters": "^1.5.1",
  31. "sandboxed-module": "^2.0.4",
  32. "typescript": "^5.0.4"
  33. }
  34. }