package.json 766 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "@vendure/job-queue-plugin",
  3. "version": "1.0.0-beta.3",
  4. "license": "MIT",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "private": true,
  11. "scripts": {
  12. "watch": "tsc -p ./tsconfig.build.json --watch",
  13. "build": "rimraf lib && tsc -p ./tsconfig.build.json && yarn ts-node build.ts",
  14. "lint": "tslint --fix --project ./",
  15. "test": "jest --config ./jest.config.js",
  16. "ci": "yarn build"
  17. },
  18. "publishConfig": {
  19. "access": "restricted"
  20. },
  21. "devDependencies": {
  22. "@google-cloud/pubsub": "^2.8.0",
  23. "@types/redis": "^2.8.28",
  24. "@vendure/common": "^1.0.0-beta.3",
  25. "@vendure/core": "^1.0.0-beta.3",
  26. "redis": "^3.0.2",
  27. "rimraf": "^3.0.2",
  28. "typescript": "4.1.5"
  29. }
  30. }