forked from maptalks/to-geojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "@wsw0108/to-geojson",
"version": "1.0.5",
"description": "Convert some formats to GeoJSON.",
"main": "dist/to-geojson.cjs.js",
"module": "dist/to-geojson.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maptalks/to-geojson.git"
},
"keywords": [
"csv",
"gpx",
"kml",
"topojson",
"wkt",
"polyline",
"osm",
"geojson"
],
"author": "wsw0108",
"license": "MIT",
"bugs": {
"url": "https://github.com/maptalks/to-geojson/issues"
},
"homepage": "https://github.com/maptalks/to-geojson#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.2",
"@types/chai": "^4.3.0",
"@types/fs-extra": "^9.0.13",
"@types/geojson": "^7946.0.8",
"@types/mapbox__polyline": "^1.0.2",
"@types/mocha": "^9.0.0",
"@types/topojson-client": "^3.1.0",
"@types/wellknown": "^0.5.1",
"chai": "^4.3.4",
"fs-extra": "^10.0.0",
"mocha": "^9.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.63.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@mapbox/polyline": "^1.1.1",
"@tmcw/togeojson": "^4.5.0",
"@xmldom/xmldom": "^0.8.0",
"csv2geojson": "^5.1.1",
"topojson-client": "^3.1.0",
"wellknown": "^0.5.0"
}
}