forked from bartholomew91/nexrad-radar-data
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.13 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
52
53
{
"name": "nexrad-level-2-data",
"version": "3.0.2",
"description": "Decode Nexrad Level II radar archive files",
"main": "./src/index.mjs",
"type": "module",
"scripts": {
"test": "node test.mjs",
"docs": "npx gulp docs",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netbymatt/nexrad-level-2-data.git"
},
"bugs": {
"url": "https://github.com/netbymatt/nexrad-level-2-data/issues"
},
"homepage": "https://github.com/netbymatt/nexrad-level-2-data#readme",
"keywords": [
"NEXRAD",
"level",
"2",
"radar",
"data",
"parsing"
],
"author": "Matt Walsh",
"license": "MIT",
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^9.39.5",
"del": "^8.0.0",
"eslint": "^9.39.5",
"eslint-config-airbnb-extended": "^3.1.1",
"eslint-plugin-jsdoc": "^63.3.1",
"glob": "^13.0.6",
"gulp": "^5.0.0",
"gulp-jsdoc3": "^3.0.0",
"jsdoc": "^4.0.3",
"jsdoc-to-markdown": "^9.1.1"
},
"engines": {
"node": ">=24.0.0"
},
"allowScripts": {
"unrs-resolver@1.12.2": true
},
"dependencies": {
"@foxglove/wasm-bz2": "^0.3.0"
}
}