forked from bartholomew91/nexrad-radar-data
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "nexrad-level-2-data",
"version": "2.4.2",
"description": "Decode Nexrad Level II radar archive files",
"main": "./src/index.js",
"scripts": {
"test": "node test.js",
"docs": "npx gulp docs"
},
"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",
"dependencies": {
"seek-bzip": "^2.0.0"
},
"devDependencies": {
"del": "^7.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^48.0.0",
"glob": "^10.0.0",
"gulp": "^5.0.0",
"gulp-jsdoc3": "^3.0.0",
"jsdoc": "^4.0.3",
"jsdoc-to-markdown": "^8.0.0"
},
"engines": {
"node": ">=13.0.0"
}
}