-
-
Notifications
You must be signed in to change notification settings - Fork 352
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.62 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
{
"name": "nightscout-librelink-up",
"version": "3.3.0",
"description": "Script written in TypeScript that uploads CGM readings from LibreLink Up to Nightscout",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "npx ts-node --transpile-only src/index.ts",
"start-dev": "npx ts-node src/index.ts",
"start-heroku": "node dist/index.js",
"lint": "npx eslint . --fix",
"test": "jest --coverage --forceExit",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timoschlueter/nightscout-librelink-up.git"
},
"keywords": [
"nightscout",
"cgm",
"diabetes",
"blood",
"sugar",
"freestyle",
"libre",
"librelink",
"up",
"uploader"
],
"author": "Timo Schlueter",
"license": "MIT",
"bugs": {
"url": "https://github.com/timoschlueter/nightscout-librelink-up/issues"
},
"homepage": "https://github.com/timoschlueter/nightscout-librelink-up#readme",
"dependencies": {
"@dotenvx/dotenvx": "~1.52.0",
"axios": "~1.13.2",
"axios-mock-adapter": "~2.1.0",
"http-cookie-agent": "~7.0.2",
"node-cron": "~4.2.1",
"tough-cookie": "~5.1.2",
"winston": "~3.18.3"
},
"devDependencies": {
"@tsconfig/node20": "~20.1.7",
"@types/jest": "~30.0.0",
"@types/node": "~24.10.1",
"@types/node-cron": "~3.0.11",
"@types/tough-cookie": "~4.0.5",
"@typescript-eslint/eslint-plugin": "~8.46.4",
"@typescript-eslint/parser": "~8.46.4",
"eslint": "~9.39.1",
"jest": "~30.2.0",
"ts-jest": "~29.4.5",
"ts-node": "~10.9.2",
"typescript": "~5.9.3"
}
}