package.json 525 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "uni-stat-cron",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1"
  8. },
  9. "author": "",
  10. "license": "ISC",
  11. "dependencies": {
  12. "uni-stat": "file:../common/uni-stat"
  13. },
  14. "cloudfunction-config": {
  15. "concurrency": 1,
  16. "memorySize": 512,
  17. "timeout": 600,
  18. "triggers": [
  19. {
  20. "name": "uni-stat-cron",
  21. "type": "timer",
  22. "config": "0 0 * * * * *"
  23. }
  24. ]
  25. },
  26. "extensions": {}
  27. }