-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 902 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": "nexrad-level-2-plot",
"version": "3.0.3",
"description": "Plotting library for nexrad-level-2-data",
"main": "src/index.mjs",
"type": "module",
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netbymatt/nexrad-level-2-plot.git"
},
"keywords": [
"NEXRAD",
"level",
"2",
"radar",
"plot"
],
"author": "Matt Walsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/netbymatt/nexrad-level-2-plot/issues"
},
"homepage": "https://github.com/netbymatt/nexrad-level-2-plot#readme",
"dependencies": {
"canvas": "^3.0.0",
"nexrad-level-2-data": "^3.0.2"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^9.39.5",
"eslint": "^9.39.5",
"eslint-config-airbnb-extended": "^3.1.1",
"glob": "^13.0.6"
},
"engines": {
"node": ">=24.0.0"
}
}