package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@vendure/testing",
  3. "version": "1.2.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. "homepage": "https://www.vendure.io/",
  26. "funding": "https://github.com/sponsors/michaelbromley",
  27. "scripts": {
  28. "build": "tsc -p ./tsconfig.build.json",
  29. "watch": "tsc -p ./tsconfig.build.json -w",
  30. "lint": "tslint --fix --project ./",
  31. "ci": "yarn build"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/vendure-ecommerce/vendure/issues"
  35. },
  36. "dependencies": {
  37. "@types/node-fetch": "^2.5.4",
  38. "@vendure/common": "^1.2.0",
  39. "faker": "^4.1.0",
  40. "form-data": "^3.0.0",
  41. "graphql": "15.5.1",
  42. "graphql-tag": "^2.10.1",
  43. "node-fetch": "^2.6.0",
  44. "sql.js": "1.3.2"
  45. },
  46. "devDependencies": {
  47. "@types/mysql": "^2.15.15",
  48. "@types/pg": "^7.14.5",
  49. "@vendure/core": "^1.2.0",
  50. "mysql": "^2.18.1",
  51. "pg": "^8.4.0",
  52. "rimraf": "^3.0.0",
  53. "typescript": "4.3.5"
  54. }
  55. }