package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@vendure/testing",
  3. "version": "0.5.0",
  4. "description": "End-to-end testing tools for Vendure projects",
  5. "keywords": [
  6. "vendure",
  7. "testing",
  8. "e2e"
  9. ],
  10. "author": "Michael Bromley <michael@michaelbromley.co.uk>",
  11. "homepage": "https://github.com/vendure-ecommerce/vendure#readme",
  12. "license": "MIT",
  13. "directories": {
  14. "lib": "lib"
  15. },
  16. "files": [
  17. "lib"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/vendure-ecommerce/vendure.git"
  24. },
  25. "scripts": {
  26. "build": "tsc -p ./tsconfig.build.json",
  27. "watch": "tsc -p ./tsconfig.build.json -w",
  28. "lint": "tslint --fix --project ./"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/vendure-ecommerce/vendure/issues"
  32. },
  33. "dependencies": {
  34. "@vendure/common": "^0.5.0",
  35. "graphql": "^14.5.8",
  36. "graphql-tag": "^2.10.1"
  37. },
  38. "devDependencies": {
  39. "@vendure/core": "^0.5.0",
  40. "node-fetch": "^2.6.0",
  41. "node-libcurl": "^2.0.2",
  42. "rimraf": "^3.0.0",
  43. "typescript": "^3.6.4"
  44. }
  45. }