-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 943 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
{
"name": "@bovan/gpx2geojson",
"version": "2.0.0-alpha.5",
"description": "A GPX parser that converts the coordinates from Strava GPX file to simplified GeoJSON",
"main": "dist/index.js",
"homepage": "https://github.com/bovan/gpx2geojson",
"scripts": {
"build": "tsc",
"test": "jest",
"testWatch": "jest --watchAll",
"publish": "tsc && npm publish"
},
"keywords": [
"gpx",
"geojson",
"simplify"
],
"author": "Børge Antonsen",
"license": "ISC",
"dependencies": {
"node-html-parser": "^6.1.5",
"simplify-geometry": "^0.0.2",
"typescript": "^5.0.4",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/geojson": "^7946.0.10",
"@types/jest": "^29.5.0",
"@types/xml2js": "^0.4.11",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
}
}