package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@vendure/testing",
  3. "version": "0.10.1",
  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. "ci": "yarn build"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/vendure-ecommerce/vendure/issues"
  33. },
  34. "dependencies": {
  35. "@types/node-fetch": "^2.5.4",
  36. "@vendure/common": "^0.10.1",
  37. "faker": "^4.1.0",
  38. "graphql": "^14.5.8",
  39. "graphql-tag": "^2.10.1",
  40. "node-fetch": "^2.6.0",
  41. "node-libcurl": "^2.0.2",
  42. "sql.js": "1.1.0"
  43. },
  44. "devDependencies": {
  45. "@types/mysql": "^2.15.8",
  46. "@types/pg": "^7.14.1",
  47. "@vendure/core": "^0.10.1",
  48. "mysql": "^2.17.1",
  49. "pg": "^7.17.1",
  50. "rimraf": "^3.0.0",
  51. "typescript": "3.8.3"
  52. }
  53. }