-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "garmin-connect",
"version": "1.6.1",
"description": "Makes it simple to interface with Garmin Connect to get or set any data point",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build --clean && find ./dist -type d -empty -delete; tsc",
"build:windows": "tsc --build --clean && tsc",
"build:watch": "npm run build -- --watch",
"build:watch-windows": "npm run build:windows -- --watch",
"prettier:all": "prettier --write .",
"pretty": "pretty-quick --staged",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pythe1337N/garmin-connect.git"
},
"keywords": [
"garmin",
"connect",
"scraper",
"weight",
"running",
"workout",
"activity",
"activities",
"download",
"downloader"
],
"author": "Oskar Bernberg (Pythe1337N)",
"license": "MIT",
"files": [
"dist/*",
"examples/*"
],
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/lodash": "^4.14.199",
"@types/luxon": "^3.3.2",
"@types/node": "^18.11.15",
"@types/qs": "^6.9.7",
"@types/request-promise": "^4.1.48",
"pre-commit": "^1.2.2",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.9.4"
},
"homepage": "https://github.com/Pythe1337N/garmin-connect#readme",
"bugs": {
"url": "https://github.com/Pythe1337N/garmin-connect/issues"
},
"runkitExampleFilename": "./examples/example.js",
"dependencies": {
"app-root-path": "^3.1.0",
"axios": "^1.5.1",
"crypto": "^1.0.1",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^3.4.3",
"oauth-1.0a": "^2.2.6",
"qs": "^6.11.2"
},
"pre-commit": "pretty"
}