-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 885 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 885 Bytes
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
{
"name": "buoyant",
"version": "0.1.0",
"description": "Lightweight NOAA marine data aggregator - surf, wind, and tide conditions",
"main": "index.js",
"bin": {
"buoyant": "./cli.js"
},
"scripts": {
"test": "node tests/run-all.js",
"test:unit": "node tests/test-buoyant.js",
"test:cli": "node tests/test-cli.js",
"example": "node examples/simple.js"
},
"keywords": [
"noaa",
"marine",
"weather",
"surf",
"waves",
"ndbc",
"buoy",
"tide",
"ocean"
],
"author": "Dave Shilobod",
"license": "MIT",
"dependencies": {
"axios": "^1.12.2",
"commander": "^11.1.0",
"geofire-common": "^6.0.0",
"ngeohash": "^0.6.3",
"package.json": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daveshilobod/buoyant.git"
},
"engines": {
"node": ">=14.0.0"
}
}