-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "wlbot",
"version": "1.1.15",
"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": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"dependencies": {
"axios": "^1.6.3",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.23.7",
"@types/jest": "^29.5.11",
"jest": "^29.7.0"
},
"engines": {
"node": ">=16"
}
}