package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "1.3.4",
  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=payment-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. },
  27. "devDependencies": {
  28. "@types/braintree": "^2.22.15",
  29. "@vendure/common": "^1.3.4",
  30. "@vendure/core": "^1.3.4",
  31. "@vendure/testing": "^1.3.4",
  32. "braintree": "^3.0.0",
  33. "@mollie/api-client": "^3.5.1",
  34. "nock": "^13.1.4",
  35. "rimraf": "^3.0.2",
  36. "typescript": "4.3.5"
  37. }
  38. }