-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"type": "module",
"name": "ems-file-service",
"private": true,
"version": "0.0.1",
"description": "Data sources, vector data, and manifest generation for Elastic Maps Service",
"main": "index.js",
"scripts": {
"lint": "eslint --fix *.js scripts/*.js",
"test": "tap --timeout=0 test/*.js",
"build": "node index.js"
},
"keywords": [],
"engines": {
"node": ">= 22 <= 26"
},
"author": "Nick Peihl <nick.peihl@elastic.co>",
"license": "Elastic-License",
"dependencies": {
"@elastic/eslint-config-kibana": "^0.15.0",
"hjson": "^3.2.1",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"mkdirp": "^3.0.1",
"semver": "^7.5.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@mapbox/geojson-rewind": "0.5.2",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"@babel/eslint-parser": "7.28.6",
"csv-parse": "6.2.1",
"eslint": "10.2.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prefer-object-spread": "1.2.1",
"geojson-rewind": "0.3.1",
"geolib": "3.3.14",
"jsts": "2.12.1",
"node-fetch": "3.3.2",
"tap": "21.6.2"
},
"resolutions": {
"**/glob": "^13.0.0",
"**/minimatch": "^10.2.3",
"eslint/ajv": "^6.14.0",
"**/diff": "^8.0.3"
}
}