package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "2.0.0-next.28",
  4. "license": "MIT",
  5. "main": "package/index.js",
  6. "types": "package/index.d.ts",
  7. "files": [
  8. "package/**/*"
  9. ],
  10. "private": false,
  11. "scripts": {
  12. "watch": "tsc -p ./tsconfig.build.json --watch",
  13. "build": "rimraf package && tsc -p ./tsconfig.build.json",
  14. "e2e": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.ts --run",
  15. "e2e:watch": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.ts",
  16. "lint": "eslint --fix .",
  17. "ci": "yarn build",
  18. "dev-server:mollie": "yarn build && DB=sqlite node -r ts-node/register e2e/mollie-dev-server.ts"
  19. },
  20. "homepage": "https://www.vendure.io/",
  21. "funding": "https://github.com/sponsors/michaelbromley",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "peerDependencies": {
  26. "@mollie/api-client": "3.x",
  27. "braintree": "3.x",
  28. "stripe": "8.x"
  29. },
  30. "peerDependenciesMeta": {
  31. "@mollie/api-client": {
  32. "optional": true
  33. },
  34. "braintree": {
  35. "optional": true
  36. },
  37. "stripe": {
  38. "optional": true
  39. }
  40. },
  41. "devDependencies": {
  42. "@mollie/api-client": "^3.6.0",
  43. "@types/braintree": "^2.22.15",
  44. "@types/localtunnel": "2.0.1",
  45. "@vendure/common": "^2.0.0-next.28",
  46. "@vendure/core": "^2.0.0-next.28",
  47. "@vendure/testing": "^2.0.0-next.28",
  48. "braintree": "^3.0.0",
  49. "localtunnel": "2.0.1",
  50. "nock": "^13.1.4",
  51. "rimraf": "^3.0.2",
  52. "stripe": "^8.197.0",
  53. "typescript": "4.9.5"
  54. }
  55. }