-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 2.39 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": "@elastic/ems-client",
"version": "8.6.3",
"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 <[email protected]>",
"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.15",
"@types/topojson-client": "3.1.5",
"chroma-js": "2.4.2",
"lodash": "^4.17.21",
"lru-cache": "^4.1.5",
"maplibre-gl": "3.1.0",
"semver": "^7.6.3",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@eslint/core": "0.9.1",
"@eslint/js": "9.17.0",
"@types/chroma-js": "2.4.5",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/lru-cache": "5.1.1",
"@types/node": "20.17.10",
"@types/semver": "7.5.8",
"@types/topojson-specification": "1.0.5",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"babel-jest": "29.7.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.2"
},
"engines": {
"node": ">=18 <=20"
}
}