-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "@tidepool/data-tools",
"version": "2.5.0",
"description": "Export data from the Tidepool API to various file formats",
"repository": {
"type": "git",
"url": "git+https://github.com/tidepool-org/node-data-tools.git"
},
"author": "Lennart Goedhart <lennart@tidepool.org>",
"license": "BSD-2-Clause",
"main": "index.js",
"bin": {
"tidepool-data-tools": "./cli.sh"
},
"type": "module",
"scripts": {
"lint": "eslint --cache --format=node_modules/eslint-formatter-pretty .",
"lint-fix": "yarn run lint -- --fix",
"test": "node ./test/runTests.js"
},
"dependencies": {
"JSONStream": "1.3.5",
"commander": "4.1.1",
"csv-string": "3.1.7",
"event-stream": "3.3.4",
"exceljs": "4.4.0",
"flat": "5.0.2",
"lodash": "4.17.21",
"mkdirp": "1.0.3",
"moment": "2.29.4"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/eslint-parser": "7.22.10",
"@babel/plugin-syntax-import-assertions": "7.22.5",
"eslint": "8.47.0",
"eslint-config-airbnb": "19.0.4",
"eslint-formatter-pretty": "5.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-lodash": "7.4.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.1",
"json-diff": "0.5.4"
},
"resolutions": {
"ansi-regex": "5.0.1",
"minimatch": "3.0.5"
},
"packageManager": "yarn@3.6.4"
}