This repository has been archived by the owner on Apr 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
97 lines (97 loc) · 2.28 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "diasend-nightscout-bridge",
"description": "Synchronizes continuuous glucose values (CGV) from diasend to nightscout",
"version": "0.1.2",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Benedikt Reiser",
"email": "[email protected]",
"url": "https://burnedikt.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/burnedikt/diasend-nightscout-bridge"
},
"scripts": {
"lint": "eslint .",
"build": "tsc",
"prepare": "npm run build",
"start": "npm run run",
"run": "npm run build && node dist/cli/run.js",
"test": "cross-env TZ=Europe/Berlin jest --silent"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/jest": "^28.1.8",
"@types/lodash.partition": "^4.6.7",
"@types/node": "^18.7.7",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"cross-env": "^7.0.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"eslintConfig": {
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"unused-imports"
],
"ignorePatterns": [
"dist/**",
"tmp/**"
],
"root": true
},
"dependencies": {
"axios": "^0.27.2",
"axios-cookiejar-support": "^2",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.4",
"dotenv": "^16.0.3",
"lodash.partition": "^4.6.0",
"loglevel": "^1.8.1",
"node-cache": "^5.1.2",
"rand-user-agent": "^1.0.78",
"tough-cookie": "^4.1.2"
},
"keywords": [
"nightscout",
"diasend",
"sync"
],
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
}
]
}
}