forked from timoschlueter/nightscout-librelink-up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "nightscout-librelink-up",
"version": "2.1.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": {
"axios": "^1.2.2",
"axios-mock-adapter": "^1.21.2",
"node-cron": "3.0.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"@types/node-cron": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}