forked from lambrohan/nestjs-meilisearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@fphgov/nestjs-meilisearch",
"version": "3.0.0",
"description": "Meilisearch integration for NestJS.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prebuild": "rimraf lib",
"build": "rimraf lib && tsc -p tsconfig.build.json",
"format": "prettier --write '**/*.md' '**/*.json' '**/*.ts' '**/*.yml' .prettierrc",
"test": "jest",
"test:cov": "jest --coverage",
"codecov": "codecov"
},
"files": [
"lib"
],
"repository": "https://github.com/fphgov/nestjs-meilisearch",
"keywords": [
"nestjs",
"meilisearch"
],
"license": "MIT",
"private": false,
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.3.9 || ^10.1.3",
"meilisearch": ">=0.31.1 <1.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.0.0 || ^7.8.0"
},
"devDependencies": {
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@nestjs/testing": "^9.3.9",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"codecov": "^3.8.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"meilisearch": "^0.31.1",
"prettier": "^2.8.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.3.0",
"rxjs": "^7.8.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/$1"
}
},
"dependencies": {}
}