UNPKG

@the-soliton/elastic

Version:

Soliton - ElasticSearch

70 lines 1.76 kB
{ "name": "@the-soliton/elastic", "description": "Soliton - ElasticSearch", "version": "0.0.1", "private": false, "license": "MIT", "author": "Soliton", "main": "dist/index", "types": "dist/index", "typings": "dist/index.d.ts", "files": [ "dist" ], "publishConfig": { "access": "public" }, "keywords": [ "SearchEngine", "ElasticSearch" ], "dependencies": { "@elastic/elasticsearch": "^8.12.2", "@the-soliton/core": "0.0.4", "@the-soliton/http": "0.0.1", "lodash": "^4.17.21", "merge-deep": "^3.0.3" }, "devDependencies": { "@types/merge-deep": "^3.0.3" }, "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" ] }, "scripts": { "clean": "rimraf -rf dist", "purge": "rimraf -rf node_modules", "prebuild": "pnpm clean", "build": "nest build -p tsconfig.json", "format": "prettier \"./src/**/*.ts\" --ignore-path ./.prettierignore --write", "lint": "eslint --fix \"./src/**/*.ts\"", "dep:upgrade": "ncu -p pnpm -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" } }