forked from sports-alliance/sports-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.6 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.6 KB
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
{
"name": "quantified-self-lib",
"version": "2.2.5",
"description": "A Library to for 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"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"test": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/jimmykane/quantified-self-lib.git"
},
"bugs": {
"url": "https://github.com/jimmykane/quantified-self-lib/issues"
},
"homepage": "https://github.com/jimmykane/quantified-self-lib",
"author": "Dimitrios Kanellopoulos",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@types/uuid": "^3.4.4",
"fit-file-parser": "^1.5.7",
"geolib": "^2.0.24",
"gxparser": "^1.0.0",
"lowpassf": "^0.5.0",
"moving-median": "^1.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"jest": "^23.6.0",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"skipBabel": true
}
}
}
}