forked from mapbox/togeojson
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "@tmcw/togeojson",
"version": "5.8.1",
"description": "convert KML and GPX to GeoJSON",
"source": "lib/index.ts",
"umd:main": "dist/togeojson.umd.js",
"unpkg": "dist/togeojson.umd.js",
"types": "dist/index.d.ts",
"browser": "dist/togeojson.umd.js",
"jsdelivr": "dist/togeojson.umd.js",
"module": "dist/togeojson.es.mjs",
"main": "dist/togeojson.cjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/togeojson.cjs",
"default": "./dist/togeojson.es.mjs"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"lint": "eslint",
"doc": "typedoc --options ./typedoc.json && cp CNAME docs/CNAME",
"prepare": "rollup -c rollup.config.js",
"release": "standard-version"
},
"peerDependencies": {
"@types/geojson": "*"
},
"devDependencies": {
"@placemarkio/check-geojson": "^0.1.12",
"@rollup/plugin-typescript": "^8.3.3",
"@types/geojson": "^7946.0.8",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitest/coverage-c8": "^0.25.2",
"@xmldom/xmldom": "^0.8.2",
"eslint": "^8.18.0",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"typedoc": "^0.22.17",
"typescript": "^4.7.4",
"vitest": "^0.25.2"
},
"repository": {
"type": "git",
"url": "git://github.com/placemark/togeojson.git"
},
"license": "BSD-2-Clause",
"keywords": [
"kml",
"geojson",
"gpx",
"tcx",
"geo",
"parser",
"formatter",
"input",
"leaflet",
"maps"
],
"engines": {
"node": "*"
}
}