-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.79 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
{
"name": "@shelf/es-painless-fields",
"version": "3.3.0",
"description": "Helpers for bulk update Elasticsearch documents by query using Painless scripts",
"keywords": [
"bulk update",
"elasticsearch",
"painless",
"replace fields",
"scripts",
"update by query"
],
"repository": "shelfio/es-painless-fields",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "vlad@shelf.io",
"url": "shelf.io"
},
"sideEffects": false,
"exports": "./lib/index.js",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"coverage": "yarn test --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --quiet",
"test": "TZ=UTC jest src -c jest.config.unit.js",
"test:es": "DEBUG=elasticsearch-local TZ=UTC jest src -c jest.config.es.js --forceExit",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,json,md,yml}": [
"prettier --write --ignore-path=./.eslintignore"
],
"*.{ts,js}": [
"eslint --fix"
]
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"flat": "6.0.1"
},
"devDependencies": {
"@elastic/elasticsearch": "8.17.0",
"@shelf/babel-config": "3.0.0",
"@shelf/eslint-config": "4.2.1",
"@shelf/jest-elasticsearch": "5.2.0",
"@shelf/prettier-config": "1.0.0",
"@types/flat": "5.0.5",
"@types/jest": "29.5.14",
"@types/node": "18",
"babel-jest": "29.7.0",
"eslint": "9.17.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"typescript": "5.7.2"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}