UNPKG

@gooin/fit2spatial

Version:

Convert Garmin FIT files to GeoJSON, SHP, KML, GPX

82 lines (81 loc) 2.08 kB
{ "name": "@gooin/fit2spatial", "version": "0.2.2", "description": "Convert Garmin FIT files to GeoJSON, SHP, KML, GPX", "author": "gooin", "bin": { "fit2spatial": "./bin/run" }, "homepage": "https://github.com/FireflyTracks/fit2spatial", "license": "MIT", "main": "dist/index.js", "repository": "FireflyTracks/fit2spatial", "files": [ "/bin", "/dist", "/npm-shrinkwrap.json", "/oclif.manifest.json" ], "dependencies": { "@oclif/core": "^2", "@oclif/plugin-help": "^5", "@oclif/plugin-plugins": "^3.4.0", "@sports-alliance/sports-lib": "^5.4.24", "@types/geojson": "^7946.0.10", "decompress": "^4.2.1", "geojson2shp": "^0.5.0", "lodash": "^4.17.21" }, "devDependencies": { "@oclif/test": "^2.4.7", "@types/chai": "^4", "@types/decompress": "^4.2.4", "@types/mocha": "^9.0.0", "@types/node": "^16.18.47", "chai": "^4", "eslint": "^7.32.0", "eslint-config-oclif": "^4", "eslint-config-oclif-typescript": "^1.0.3", "mocha": "^9", "oclif": "^3.14.0", "shx": "^0.3.3", "ts-node": "^10.9.1", "tslib": "^2.6.2", "typescript": "^4.9.5" }, "oclif": { "bin": "fit2spatial", "dirname": "fit2spatial", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-plugins" ], "topicSeparator": " ", "topics": { "hello": { "description": "Say hello to the world and others" } } }, "scripts": { "build": "shx rm -rf dist && tsc -b", "lint": "eslint . --ext .ts --config .eslintrc", "postpack": "shx rm -f oclif.manifest.json", "posttest": "yarn lint", "prepack": "yarn build && oclif manifest && oclif readme", "test": "mocha --forbid-only \"test/**/*.test.ts\"", "version": "oclif readme && git add README.md" }, "engines": { "node": ">=12.0.0" }, "bugs": "https://github.com/FireflyTracks/fit2spatial/issues", "keywords": [ "Garmin FIT", "GeoJSON", "SHP", "FIT" ], "types": "dist/index.d.ts" }