-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.09 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
79
80
81
82
83
{
"name": "@shelf/elasticsearch-local",
"version": "3.2.0",
"description": "Run 6+ version of ElasticSearch locally",
"keywords": [
"elastic",
"elastic local",
"elasticsearch",
"elasticsearch local",
"es",
"es local",
"local"
],
"homepage": "https://github.com/shelfio/elasticsearch-local#readme",
"bugs": {
"url": "https://github.com/shelfio/elasticsearch-local/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shelfio/elasticsearch-local.git"
},
"license": "MIT",
"author": "Vitalii Sikora",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf lib/ && yarn build:types && yarn build:code",
"build:code": "node esbuild.js",
"build:types": "tsc --emitDeclarationOnly --declaration --isolatedModules false --declarationDir lib",
"coverage": "yarn test --coverage",
"lint": "eslint . --ext .js,.ts,.json --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"prepack": "yarn build",
"test": "jest src --runInBand",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,md,yml}": [
"prettier --write"
],
"*.{js,ts,json}": [
"eslint --fix"
]
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"cwd": "0.10.0",
"debug": "4.3.6",
"download-tarball": "2.0.0",
"execa": "8.0.1",
"js-yaml": "4.1.0",
"wait-for-localhost": "3.3.0"
},
"devDependencies": {
"@shelf/eslint-config": "3.15.1",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.1.0",
"@swc/core": "1.7.11",
"@swc/jest": "0.2.36",
"@types/cwd": "0.10.2",
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "18",
"esbuild": "0.23.1",
"eslint": "8.57.1",
"husky": "9.1.4",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}