@joktec/elastic
Version:
JokTec - ElasticSearch
76 lines (75 loc) • 1.99 kB
JSON
{
"name": "@joktec/elastic",
"description": "JokTec - ElasticSearch",
"version": "0.2.7",
"private": false,
"license": "MIT",
"author": "JokTec",
"homepage": "https://github.com/joktec/joktec-monorepo.git",
"repository": {
"type": "git",
"url": "https://github.com/joktec/joktec-monorepo.git",
"directory": "packages/elastic"
},
"main": "dist/index",
"types": "dist/index",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"SearchEngine",
"ElasticSearch"
],
"scripts": {
"clean": "rimraf -rf dist",
"purge": "rimraf -rf dist node_modules",
"prebuild": "yarn clean",
"build": "nest build -p tsconfig.json",
"prepublishOnly": "yarn build",
"format": "prettier \"./src/**/*.ts\" --ignore-path ./.prettierignore --write",
"lint": "eslint --fix \"./src/**/*.ts\"",
"dep:upgrade": "ncu -p yarn -u",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@elastic/elasticsearch": "^8.17.1",
"@joktec/core": "0.2.6",
"@joktec/http": "0.2.7",
"@joktec/utils": "0.1.1",
"lodash": "^4.17.21"
},
"lint-staged": {
"*.ts": [
"prettier --write --ignore-path ./.prettierignore",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"passWithNoTests": true,
"preset": "ts-jest",
"rootDir": "src",
"transform": {
"^.+\\.(t|s)s$": "ts-jest"
},
"coverageDirectory": "<rootDir>/../coverage/",
"collectCoverageFrom": [
"**/*.{ts,js}",
"!**/index.ts",
"!**/*.{d,enum}.ts"
]
},
"gitHead": "53b2c396dc3c40f1a36dddd97f990356b681d251"
}