package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "2.0.0-next.25",
  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": "jest --config ../../e2e-common/jest-config.js --runInBand --package=payments-plugin",
  15. "lint": "tslint --fix --project ./",
  16. "ci": "yarn build",
  17. "dev-server:mollie": "yarn build && DB=sqlite node -r ts-node/register e2e/mollie-dev-server.ts"
  18. },
  19. "homepage": "https://www.vendure.io/",
  20. "funding": "https://github.com/sponsors/michaelbromley",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "peerDependencies": {
  25. "@mollie/api-client": "3.x",
  26. "braintree": "3.x",
  27. "stripe": "8.x"
  28. },
  29. "devDependencies": {
  30. "@mollie/api-client": "^3.6.0",
  31. "@types/braintree": "^2.22.15",
  32. "@vendure/common": "^2.0.0-next.25",
  33. "@vendure/core": "^2.0.0-next.25",
  34. "@vendure/testing": "^2.0.0-next.25",
  35. "braintree": "^3.0.0",
  36. "nock": "^13.1.4",
  37. "rimraf": "^3.0.2",
  38. "stripe": "^8.197.0",
  39. "typescript": "4.5.5"
  40. }
  41. }