package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "1.4.7",
  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. },
  18. "homepage": "https://www.vendure.io/",
  19. "funding": "https://github.com/sponsors/michaelbromley",
  20. "publishConfig": {
  21. "access": "public"
  22. },
  23. "peerDependencies": {
  24. "@mollie/api-client": "3.x",
  25. "braintree": "3.x",
  26. "stripe": "8.x"
  27. },
  28. "devDependencies": {
  29. "@mollie/api-client": "^3.6.0",
  30. "@types/braintree": "^2.22.15",
  31. "@vendure/common": "^1.4.7",
  32. "@vendure/core": "^1.4.7",
  33. "@vendure/testing": "^1.4.7",
  34. "braintree": "^3.0.0",
  35. "nock": "^13.1.4",
  36. "rimraf": "^3.0.2",
  37. "stripe": "^8.197.0",
  38. "typescript": "4.3.5"
  39. }
  40. }