forked from danwild/wind-js-server
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 792 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 792 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
{
"name": "wind-server",
"version": "0.0.1",
"description": "REST service to expose GRIB2 GFS wind forecast data as pre-formatted JSON",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint index.js",
"lint:fix": "eslint --fix index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Flowm/wind-server.git"
},
"keywords": [
"gfs",
"grib2",
"node",
"wind"
],
"author": "Florian Mauracher",
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"moment": "^2.26.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.21.1"
}
}