-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 918 Bytes
/
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
{
"name": "garmin-connect-scraper",
"version": "1.1.1",
"description": "Incremental Puppeteer based Garmin Connect scraper",
"bin": "bin/main.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/evg656e/garmin-connect-scraper.git"
},
"scripts": {
"start": "node ./bin/main.js"
},
"keywords": [
"scraper",
"garmin-connect",
"puppeteer"
],
"author": "evg656e <evg656e@gmail.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/evg656e/garmin-connect-scraper/issues"
},
"homepage": "https://github.com/evg656e/garmin-connect-scraper#readme",
"devDependencies": {
"@types/hapi__joi": "^16.0.12",
"@types/minimist": "^1.2.0",
"@types/node": "^13.13.2"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"minimist": "1.2.5",
"puppeteer": "^3.0.1"
}
}