package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "1.9.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. "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. "dependencies": {
  30. "currency.js": "2.0.4"
  31. },
  32. "devDependencies": {
  33. "@mollie/api-client": "^3.6.0",
  34. "@types/braintree": "^2.22.15",
  35. "@types/localtunnel": "2.0.1",
  36. "@vendure/common": "^1.9.7",
  37. "@vendure/core": "^1.9.7",
  38. "@vendure/testing": "^1.9.7",
  39. "braintree": "^3.0.0",
  40. "localtunnel": "2.0.1",
  41. "nock": "^13.1.4",
  42. "rimraf": "^3.0.2",
  43. "stripe": "^8.197.0",
  44. "typescript": "4.3.5"
  45. }
  46. }