package.json 891 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@overleaf/access-token-encryptor",
  3. "version": "3.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "npm run lint && npm run format && npm run types:check && npm run test:unit",
  8. "lint": "eslint --ext .js --ext .cjs --ext .ts --max-warnings 0 --format unix .",
  9. "lint:fix": "eslint --fix --ext .js --ext .cjs --ext .ts .",
  10. "format": "prettier --list-different $PWD/'**/*.{js,cjs,ts}'",
  11. "format:fix": "prettier --write $PWD/'**/*.{js,cjs,ts}'",
  12. "test:ci": "npm run test:unit",
  13. "test:unit": "mocha --exit test/**/*.{js,cjs}",
  14. "types:check": "tsc --noEmit"
  15. },
  16. "author": "",
  17. "license": "AGPL-3.0-only",
  18. "dependencies": {
  19. "lodash": "^4.17.21"
  20. },
  21. "devDependencies": {
  22. "chai": "^4.3.6",
  23. "chai-as-promised": "^7.1.1",
  24. "mocha": "^11.1.0",
  25. "sandboxed-module": "^2.0.4",
  26. "typescript": "^5.0.4"
  27. }
  28. }