@sports-alliance/sports-lib
Version:
A Library to for importing / exporting and processing GPX, TCX, FIT and JSON files from services such as Strava, Movescount, Garmin, Polar etc
98 lines (97 loc) • 2.39 kB
JSON
{
"name": "@sports-alliance/sports-lib",
"version": "5.4.24",
"description": "A Library to for importing / exporting and processing GPX, TCX, FIT and JSON files from services such as Strava, Movescount, Garmin, Polar etc",
"keywords": [
"gpx",
"tcx",
"fit",
"activities",
"json",
"suunto",
"garmin",
"polar",
"export",
"import",
"reader",
"library",
"utility",
"parser"
],
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"generate:docs": "npm run build && typedoc --out docs --target es6 --theme minimal --mode file src",
"lint:fix": "eslint . --ext ts --fix",
"test": "jest",
"test-coverage": "jest --coverage",
"prettier:fix": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git://github.com/sports-alliance/sports-lib.git"
},
"bugs": {
"url": "https://github.com/sports-alliance/sports-lib/issues"
},
"homepage": "https://github.com/sports-alliance/sports-lib/",
"author": "Sports-Alliance",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"fast-xml-parser": "^3.17.4",
"fit-file-parser": "^1.9.2",
"geolib": "^3.3.1",
"gpx-builder": "^3.6.0",
"kalmanjs": "^1.1.0",
"lowpassf": "^0.5.0",
"moving-median": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.1",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.4.2",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.3.0",
"typedoc": "^0.18.0",
"typescript": "^4.2.4",
"xmldom": "^0.3.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"babelConfig": true
}
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}