-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 966 Bytes
/
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
{
"name": "dwd_data_crawler",
"version": "2.2.0",
"description": "Software agent to download data from DWD (Deutscher Wetter Dienst) and store it on disk for later use",
"main": "index.js",
"scripts": {
"lint": "standard",
"format": "prettier-standard --lint '**/*.{js,json}'",
"test": "mocha"
},
"author": "Moritz Stüber <[email protected]>",
"contributors": [
"Florian Wagner <[email protected]>"
],
"license": "MIT",
"dependencies": {
"bunyan": "^1.8.15",
"cheerio": "^1.0.0-rc.5",
"delay": "^5.0.0",
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"processenv": "^3.0.3",
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"devDependencies": {
"mocha": "^8.3.0",
"prettier-standard": "^16.4.1",
"standard": "^16.0.3"
},
"standard": {
"env": [
"mocha"
]
}
}