package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@vendure/testing",
  3. "version": "3.1.4",
  4. "description": "End-to-end testing tools for Vendure projects",
  5. "keywords": [
  6. "vendure",
  7. "testing",
  8. "e2e"
  9. ],
  10. "author": "Michael Bromley <michael@michaelbromley.co.uk>",
  11. "homepage": "https://www.vendure.io/",
  12. "license": "GPL-3.0-or-later",
  13. "directories": {
  14. "lib": "lib"
  15. },
  16. "files": [
  17. "lib"
  18. ],
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/vendure-ecommerce/vendure.git"
  27. },
  28. "funding": "https://github.com/sponsors/michaelbromley",
  29. "scripts": {
  30. "build": "tsc -p ./tsconfig.build.json",
  31. "watch": "tsc -p ./tsconfig.build.json -w",
  32. "lint": "eslint --fix .",
  33. "ci": "npm run build",
  34. "test": "vitest --config vitest.config.mts --run"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/vendure-ecommerce/vendure/issues"
  38. },
  39. "dependencies": {
  40. "@graphql-typed-document-node/core": "^3.2.0",
  41. "@vendure/common": "^3.1.4",
  42. "faker": "^4.1.0",
  43. "form-data": "^4.0.0",
  44. "graphql": "~16.9.0",
  45. "graphql-tag": "^2.12.6",
  46. "node-fetch": "^2.7.0",
  47. "sql.js": "1.8.0"
  48. },
  49. "devDependencies": {
  50. "@types/faker": "^5.5.9",
  51. "@types/mysql": "^2.15.26",
  52. "@types/node-fetch": "^2.6.4",
  53. "@types/pg": "^8.11.2",
  54. "@vendure/core": "^3.1.4",
  55. "mysql": "^2.18.1",
  56. "pg": "^8.11.3",
  57. "rimraf": "^5.0.5",
  58. "typescript": "5.3.3"
  59. }
  60. }