-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "@geek-fun/jest-search",
"version": "1.1.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"description": "Jest preset for running tests with local search platform",
"homepage": "https://github.com/geek-fun/jest-search#readme",
"author": "geekfun <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc --build",
"lint:fix": "eslint --fix ./",
"lint:check": "eslint ./",
"test": "jest --runInBand --coverage --coverageReporters json-summary text html lcov",
"test:debug": "DEBUG='jest-search' jest --runInBand --coverage --coverageReporters json-summary text html lcov",
"test:ci": "jest --runInBand --ci --coverage --coverageReporters json-summary text html lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geek-fun/jest-search.git"
},
"keywords": [
"jest",
"ElasticSearch",
"jest-elasticsearch",
"elasticsearch local",
"elasticsearch-local",
"OpenSearch",
"jest-opensearch",
"opensearch local",
"opensearch-local",
"ZincSearch",
"jest-zincsearch",
"zincsearch local",
"zincsearch-local",
"jest environment",
"jest preset",
"jest-preset",
"es",
"es local"
],
"bugs": {
"url": "https://github.com/geek-fun/jest-search/issues"
},
"dependencies": {
"debug": "^4.3.7",
"execa": "^5.1.1",
"https-proxy-agent": "^7.0.4",
"node-fetch": "^2.7.0",
"tar-fs": "^3.0.5"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/gunzip-maybe": "^1.4.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.6",
"@types/node-fetch": "^2.6.11",
"@types/tar-fs": "^2.0.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"uuid": "^9.0.1"
},
"directories": {
"test": "tests"
}
}