package.json 693 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "cfc-automation-tests",
  3. "version": "1.0.0",
  4. "description": "心知益家小程序自动化测试套件",
  5. "main": "run-tests.js",
  6. "scripts": {
  7. "test": "node run-tests.js",
  8. "test:p0": "node run-tests.js --priority=P0",
  9. "test:p1": "node run-tests.js --priority=P1",
  10. "test:p2": "node run-tests.js --priority=P2",
  11. "sync": "node run-tests.js --sync-only",
  12. "report": "node run-tests.js --report-only"
  13. },
  14. "keywords": [
  15. "automation",
  16. "testing",
  17. "wechat-miniprogram",
  18. "chrome-devtools"
  19. ],
  20. "author": "Sisyphus",
  21. "license": "MIT",
  22. "dependencies": {
  23. "puppeteer": "^21.0.0"
  24. },
  25. "devDependencies": {}
  26. }