-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.73 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
{
"name": "@shelf/jest-elasticsearch",
"version": "5.2.0",
"description": "Run your tests using jest & elasticsearch-local",
"keywords": [
"jest",
"jest environment",
"jest preset",
"elasticsearch",
"elasticsearch local",
"elasticsearch-local"
],
"repository": "shelfio/jest-elasticsearch",
"license": "MIT",
"author": {
"name": "Andrii Petlovanyi",
"email": "[email protected]",
"url": "shelf.io"
},
"files": [
"jest-es-config.js",
"jest-preset.js",
"lib/"
],
"scripts": {
"build": "rm -rf lib/ && tsc --declaration",
"coverage": "jest --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --quiet",
"prepack": "yarn build",
"test": "export ENVIRONMENT=local && jest tests",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{ts,js,}": [
"eslint --fix"
],
"*.{html,json,md,yml}": [
"prettier --write"
]
},
"prettier": "@shelf/prettier-config",
"jest": {
"preset": "./jest-preset.js",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"dependencies": {
"@shelf/elasticsearch-local": "3.2.0",
"cwd": "0.10.0"
},
"devDependencies": {
"@elastic/elasticsearch": "8.4.0",
"@shelf/eslint-config": "4.2.1",
"@shelf/prettier-config": "0.0.7",
"@shelf/tsconfig": "0.0.8",
"@types/cwd": "^0.10.0",
"@types/jest": "28.1.8",
"@types/node": "20",
"eslint": "9.17.0",
"husky": "8.0.3",
"jest": "28.1.3",
"lint-staged": "13.3.0",
"prettier": "3.4.2",
"ts-jest": "28.0.8",
"typescript": "5.7.2"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}