-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.16 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
{
"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": ">= 20 <= 22"
},
"author": "Nick Peihl <nick.peihl@elastic.co>",
"license": "Elastic-License",
"dependencies": {
"@elastic/eslint-config-kibana": "^0.15.0",
"glob": "^11.0.0",
"hjson": "^3.2.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mkdirp": "^3.0.1",
"semver": "^7.5.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@mapbox/geojson-rewind": "0.5.2",
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
"@babel/eslint-parser": "7.25.9",
"csv-parse": "5.5.6",
"eslint": "9.15.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prefer-object-spread": "1.2.1",
"geojson-rewind": "0.3.1",
"geolib": "3.3.4",
"jsts": "2.12.1",
"node-fetch": "3.3.2",
"tap": "21.0.1"
}
}