-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
41 lines (41 loc) · 922 Bytes
/
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
{
"name": "geojson2shp",
"version": "0.5.0",
"description": "Convert GeoJSON into Shapefile in pure JavaScript",
"main": "index.js",
"repository": "https://github.com/jdesboeufs/geojson2shp",
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"private": false,
"bin": "cli.js",
"scripts": {
"lint": "xo",
"test": "ava"
},
"dependencies": {
"epsg-index": "^1.2.0",
"geojson-stream": "^0.1.0",
"gunzip-stream": "^1.0.1",
"is-stream": "^2.0.1",
"pump": "^3.0.0",
"pumpify": "^2.0.1",
"reproject": "^1.2.6",
"yazl": "^2.5.1"
},
"devDependencies": {
"ava": "^4.0.1",
"dev-null": "^0.1.1",
"xo": "^0.38.2"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"unicorn/no-abusive-eslint-disable": "warn",
"unicorn/no-array-for-each": "off"
}
},
"engines": {
"node": ">= 12"
}
}