package.json 511 B

1234567891011121314151617181920
  1. {
  2. "name": "puter-integration-tests",
  3. "version": "1.0.0",
  4. "description": "Integration tests for Puter",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha captcha/**/*.test.js",
  8. "test:auth": "mocha captcha/authentication-flow.test.js",
  9. "test:ui": "mocha captcha/ui-behavior.test.js"
  10. },
  11. "devDependencies": {
  12. "chai": "^4.3.7",
  13. "express": "^4.18.2",
  14. "jsdom": "^21.1.0",
  15. "mocha": "^10.2.0",
  16. "sinon": "^15.2.0",
  17. "body-parser": "^1.20.2",
  18. "supertest": "^6.3.3"
  19. }
  20. }