package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "2.2.0-next.3",
  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. "dev-server:stripe": "yarn build && DB=sqlite node -r ts-node/register e2e/stripe-dev-server.ts"
  20. },
  21. "homepage": "https://www.vendure.io/",
  22. "funding": "https://github.com/sponsors/michaelbromley",
  23. "publishConfig": {
  24. "access": "public"
  25. },
  26. "peerDependencies": {
  27. "@mollie/api-client": "3.x",
  28. "braintree": "3.x",
  29. "stripe": "13.x"
  30. },
  31. "dependencies": {
  32. "currency.js": "2.0.4"
  33. },
  34. "peerDependenciesMeta": {
  35. "@mollie/api-client": {
  36. "optional": true
  37. },
  38. "braintree": {
  39. "optional": true
  40. },
  41. "stripe": {
  42. "optional": true
  43. }
  44. },
  45. "devDependencies": {
  46. "@mollie/api-client": "^3.7.0",
  47. "@types/braintree": "^2.22.15",
  48. "@types/localtunnel": "2.0.1",
  49. "@vendure/common": "2.2.0-next.3",
  50. "@vendure/core": "2.2.0-next.3",
  51. "@vendure/testing": "2.2.0-next.3",
  52. "braintree": "^3.16.0",
  53. "localtunnel": "2.0.2",
  54. "nock": "^13.1.4",
  55. "rimraf": "^3.0.2",
  56. "stripe": "^13.3.0",
  57. "typescript": "4.9.5"
  58. }
  59. }