package.json 780 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "@vendure/elasticsearch-plugin",
  3. "version": "0.6.1",
  4. "license": "MIT",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "scripts": {
  11. "watch": "tsc -p ./tsconfig.build.json --watch",
  12. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  13. "lint": "tslint --fix --project ./",
  14. "test": "jest --config ./jest.config.js",
  15. "e2e": "jest --config ../../e2e-common/jest-config.js --runInBand --package=elasticsearch-plugin"
  16. },
  17. "publishConfig": {
  18. "access": "public"
  19. },
  20. "dependencies": {
  21. "@elastic/elasticsearch": "^7.1.0",
  22. "deepmerge": "^4.0.0"
  23. },
  24. "devDependencies": {
  25. "@vendure/common": "^0.6.0",
  26. "@vendure/core": "^0.6.1",
  27. "rimraf": "^3.0.0",
  28. "typescript": "~3.5.3"
  29. }
  30. }