package.json 844 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@vendure/elasticsearch-plugin",
  3. "version": "1.2.0",
  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": "node e2e/check-connection.js || jest --config ../../e2e-common/jest-config.js --runInBand --package=elasticsearch-plugin"
  16. },
  17. "publishConfig": {
  18. "access": "public"
  19. },
  20. "dependencies": {
  21. "@elastic/elasticsearch": "^7.9.1",
  22. "deepmerge": "^4.2.2",
  23. "fast-deep-equal": "^3.1.3"
  24. },
  25. "devDependencies": {
  26. "@vendure/common": "^1.2.0",
  27. "@vendure/core": "^1.2.0",
  28. "rimraf": "^3.0.2",
  29. "typescript": "4.3.5"
  30. }
  31. }