package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@vendure/testing",
  3. "version": "0.7.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.7.0",
  35. "faker": "^4.1.0",
  36. "graphql": "^14.5.8",
  37. "graphql-tag": "^2.10.1",
  38. "node-fetch": "^2.6.0",
  39. "node-libcurl": "^2.0.2",
  40. "sql.js": "^1.0.0"
  41. },
  42. "devDependencies": {
  43. "@types/mysql": "^2.15.8",
  44. "@types/pg": "^7.14.1",
  45. "@vendure/core": "^0.7.0",
  46. "mysql": "^2.17.1",
  47. "pg": "^7.17.1",
  48. "rimraf": "^3.0.0",
  49. "typescript": "^3.6.4"
  50. }
  51. }