| 1234567891011121314151617181920212223242526272829 |
- {
- "name": "@vendure/elasticsearch-plugin",
- "version": "0.5.0",
- "license": "MIT",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "scripts": {
- "watch": "tsc -p ./tsconfig.build.json --watch",
- "build": "rimraf lib && tsc -p ./tsconfig.build.json",
- "lint": "tslint --fix --project ./",
- "test": "jest --config ./jest.config.js"
- },
- "publishConfig": {
- "access": "public"
- },
- "dependencies": {
- "@elastic/elasticsearch": "^7.1.0",
- "deepmerge": "^4.0.0"
- },
- "devDependencies": {
- "@vendure/common": "^0.5.0",
- "@vendure/core": "^0.5.0",
- "rimraf": "^3.0.0",
- "typescript": "~3.5.3"
- }
- }
|