-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.41 KB
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
{
"name": "@elastic/ems-client",
"version": "8.7.0",
"description": "JavaScript client library for the Elastic Maps Service",
"main": "target/node/index.js",
"browser": "target/web/index.js",
"types": "target/index.d.ts",
"scripts": {
"prepare": "husky",
"prelint": "tsc --noEmit",
"lint": "prettier --check src/* && eslint .",
"pretest": "yarn lint",
"test": "jest",
"build": "tsc --emitDeclarationOnly && yarn build-web && yarn build-node",
"build-web": "BABEL_ENV=web babel src --extensions \".ts,.tsx\" --config-file=./babel.config.js --out-dir=target/web --delete-dir-on-start",
"build-node": "BABEL_ENV=node babel src --extensions \".ts,.tsx\" --config-file=./babel.config.js --out-dir=target/node --delete-dir-on-start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/ems-client.git"
},
"keywords": [
"kibana",
"elasticsearch",
"elastic maps service"
],
"author": "Nick Peihl <nick.peihl@elastic.co>",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/elastic/ems-client/issues"
},
"homepage": "https://github.com/elastic/ems-client#readme",
"dependencies": {
"@types/geojson": "7946.0.16",
"@types/topojson-client": "3.1.5",
"chroma-js": "2.4.2",
"lodash": "^4.18.1",
"lru-cache": "11.5.2",
"maplibre-gl": "5.3.0",
"semver": "7.8.0",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "8.0.4",
"@babel/core": "8.0.1",
"@babel/preset-env": "8.0.2",
"@babel/preset-typescript": "8.0.1",
"@eslint/core": "1.2.1",
"@eslint/js": "10.0.1",
"@types/chroma-js": "2.4.5",
"@types/jest": "30.0.0",
"@types/lodash": "4.17.25",
"@types/lru-cache": "7.10.10",
"@types/node": "24.13.3",
"@types/semver": "7.7.1",
"@types/topojson-specification": "1.0.5",
"@typescript-eslint/eslint-plugin": "8.68.0",
"@typescript-eslint/parser": "8.68.0",
"babel-jest": "30.4.1",
"eslint": "10.9.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"globals": "17.11.0",
"husky": "9.1.7",
"jest": "30.4.2",
"prettier": "3.9.6",
"ts-jest": "29.4.12",
"typescript": "6.0.3",
"typescript-eslint": "8.68.0"
},
"resolutions": {
"**/glob": "^13.0.6",
"**/minimatch": "^10.2.5",
"**/protocol-buffers-schema": "^3.6.1"
},
"engines": {
"node": ">=24"
}
}