-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
54
55
{
"name": "dwd_data_access",
"version": "2.1.0",
"description": "Microservice providing weather forecasts and -data based on raw files downloaded from DWD by dwd_data_crawler",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint; mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/UdSAES/dwd_data_access.git"
},
"author": "Florian Wagner <[email protected]>",
"contributors": [
"Moritz Stüber <[email protected]>"
],
"license": "MIT",
"dependencies": {
"async-parallel": "^1.2.3",
"bunyan": "^1.8.12",
"child-process-promise": "^2.2.1",
"cors": "^2.8.5",
"delay": "^4.3.0",
"dwd-csv-helper": "^0.2.4",
"dwd-grib-helper": "^0.3.2",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-request-id": "^1.4.1",
"extract-zip": "^1.6.7",
"fs-extra": "^8.1.0",
"grib2-simple": "^1.1.1",
"json-schema-ref-parser": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"processenv": "^1.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"request-promise-native": "^1.0.7",
"spherical": "^0.2.0",
"swagger-tools": "^0.10.4",
"tmp-promise": "^2.0.2",
"verror": "^1.10.0"
},
"devDependencies": {
"mocha": "^6.2.1",
"standard": "^12.0.1"
},
"standard": {
"env": [
"mocha"
]
}
}