1234567891011121314151617181920 |
- {
- "name": "puter-integration-tests",
- "version": "1.0.0",
- "description": "Integration tests for Puter",
- "main": "index.js",
- "scripts": {
- "test": "mocha captcha/**/*.test.js",
- "test:auth": "mocha captcha/authentication-flow.test.js",
- "test:ui": "mocha captcha/ui-behavior.test.js"
- },
- "devDependencies": {
- "chai": "^4.3.7",
- "express": "^4.18.2",
- "jsdom": "^21.1.0",
- "mocha": "^10.2.0",
- "sinon": "^15.2.0",
- "body-parser": "^1.20.2",
- "supertest": "^6.3.3"
- }
- }
|