package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "qarel",
  3. "version": "1.0.0",
  4. "description": "QArel is a Salesforce test automation framework based on SerenityJS",
  5. "main": "index.js",
  6. "repository": "https://codeberg.org/nchursin/qarel",
  7. "author": "Nikita Chursin <nchursin.dev@gmail.com>",
  8. "license": "Apache-2.0",
  9. "engines": {
  10. "node": "^10 || ^12 || ^14",
  11. "npm": "^6 || ^7"
  12. },
  13. "scripts": {
  14. "test": "mocha && yarn compile",
  15. "test:e2e": "wdio wdio.conf.ts",
  16. "compile": "tsc --project tsconfig.json",
  17. "build": "yarn compile"
  18. },
  19. "dependencies": {
  20. "@serenity-js/assertions": "2.33.9",
  21. "@serenity-js/console-reporter": "2.33.9",
  22. "@serenity-js/core": "2.33.9",
  23. "@serenity-js/cucumber": "2.33.9",
  24. "@serenity-js/mocha": "2.33.9",
  25. "@serenity-js/rest": "2.33.9",
  26. "@serenity-js/serenity-bdd": "2.33.9",
  27. "@serenity-js/webdriverio": "2.33.9",
  28. "@wdio/cli": "7.20.8",
  29. "@wdio/local-runner": "7.20.8",
  30. "@wdio/mocha-framework": "7.20.7",
  31. "better-module-alias": "1.1.0",
  32. "jsforce": "1.11.0",
  33. "npm-failsafe": "0.4.3",
  34. "rimraf": "3.0.2",
  35. "tiny-types": "1.17.0",
  36. "tslint-microsoft-contrib": "6.2.0",
  37. "webdriverio": "7.20.1"
  38. },
  39. "devDependencies": {
  40. "@types/chai": "4.3.1",
  41. "@types/chai-as-promised": "7.1.5",
  42. "@types/chai-string": "1.4.2",
  43. "@types/jsforce": "1.9.42",
  44. "@types/mocha": "9.1.1",
  45. "@types/node": "17.0.39",
  46. "@types/sinon": "10.0.11",
  47. "@types/sinon-chai": "3.2.8",
  48. "@typescript-eslint/eslint-plugin": "5.27.0",
  49. "@typescript-eslint/parser": "5.27.0",
  50. "chai": "4.3.6",
  51. "chai-as-promised": "7.1.1",
  52. "chai-string": "1.5.0",
  53. "dotenv": "16.0.3",
  54. "eslint": "8.16.0",
  55. "mocha": "10.0.0",
  56. "prettier": "2.6.2",
  57. "sinon": "14.0.0",
  58. "sinon-chai": "3.7.0",
  59. "ts-node": "10.8.1",
  60. "tslint": "6.1.3",
  61. "typescript": "4.7.2"
  62. }
  63. }