package.json 687 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "olivetin-integration-tests",
  3. "version": "1.0.0",
  4. "repository": "https://github.com/OliveTin/OliveTin",
  5. "description": "The integration-tests for OliveTin's webui.",
  6. "main": "index.js",
  7. "type": "module",
  8. "scripts": {
  9. "lint": "eslint tests lib scripts runner.mjs mochaSetup.mjs",
  10. "lint:fix": "npm run lint -- --fix",
  11. "test": "mocha tests --recursive -t 10000"
  12. },
  13. "author": "",
  14. "license": "AGPL-3.0-only",
  15. "devDependencies": {
  16. "@eslint/js": "^10.0.1",
  17. "chai": "^6.2.2",
  18. "eslint": "^10.10.0",
  19. "globals": "^17.3.0",
  20. "mocha": "^12.0.0",
  21. "selenium-webdriver": "^4.49.0"
  22. },
  23. "dependencies": {
  24. "wait-on": "^9.1.0"
  25. }
  26. }