-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 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": "wlbot",
"version": "1.3.5",
"description": "A CLI for the WeatherLink Live API.",
"keywords": [
"Davis Instruments",
"WeatherLink v2 API",
"WeatherLink API",
"Weather Link API CLI",
"WeatherLink",
"WeatherLink CLI",
"weather cli"
],
"homepage": "https://github.com/mike-weiner/wlbot",
"bugs": {
"url": "https://github.com/mike-weiner/wlbot/issues",
"email": "michael.weiner@hey.com"
},
"license": "MIT",
"author": {
"name": "Michael Weiner",
"email": "michael.weiner@hey.com",
"url": "https://michaelweiner.org"
},
"type": "module",
"main": "./index.js",
"bin": {
"wlbot": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mike-weiner/wlbot.git"
},
"scripts": {
"pack:dry": "npm pack --dry-run",
"test": "vitest run --coverage"
},
"dependencies": {
"axios": "^1.13.5",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"ora": "^9.3.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=16"
}
}