package.json 971 B

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