-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 982 Bytes
/
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
{
"name": "elastic-jest-example",
"version": "1.0.0",
"description": "Example of mocking elasticsearch with jest plugin",
"main": "index.js",
"scripts": {
"test": "jest",
"serve": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harazdovskiy/elastic-jest-example.git"
},
"keywords": [
"jest",
"elasticsearch",
"mock",
"test"
],
"author": "Dmytro Harazdovskiy",
"license": "ISC",
"bugs": {
"url": "https://github.com/harazdovskiy/elastic-jest-example/issues"
},
"homepage": "https://github.com/harazdovskiy/elastic-jest-example#readme",
"dependencies": {
"@elastic/elasticsearch": "8.5.0",
"@hapi/hapi": "21.0.0",
"@types/jest": "^29.2.3",
"dotenv": "^16.0.3",
"express": "4.18.2",
"qs": "6.11.0",
"ulid": "2.3.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@shelf/jest-elasticsearch": "5.0.0",
"jest": "^29.3.1"
}
}