-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
80 lines (80 loc) · 2.12 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
70
71
72
73
74
75
76
77
78
79
80
{
"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": {
"build": "npm run clean && tsc --project tsconfig.lib.json",
"watch": "npm run build -- --watch",
"clean": "rimraf ./lib/",
"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.20.3",
"fit-file-parser": "^1.9.3",
"geolib": "^3.3.1",
"gpx-builder": "^3.7.8",
"kalmanjs": "^1.1.0",
"lowpassf": "^0.5.0",
"moving-median": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^14.6.1",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@xmldom/xmldom": "^0.7.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.0.5",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typedoc": "^0.22.3",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}