-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "dwd-csv-helper",
"version": "0.2.4",
"description": "Helper package for .csv- and .kmz-files downloaded by \"dwd_data_crawler\"",
"main": "index.js",
"scripts": {
"test": "mocha --forbid-only ./index.spec.js",
"test-inspect": "mocha --inspect-brk ./index.spec.js",
"lint": "./node_modules/standard/bin/cmd.js",
"lint-fix": "./node_modules/standard/bin/cmd.js --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/UdSAES/dwd-csv-helper.git"
},
"author": "Florian Wagner <[email protected]>",
"contributors": [
"Moritz Stüber <[email protected]>"
],
"license": "ISC",
"dependencies": {
"bunyan": "^1.8.12",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"tmp-promise": "^1.0.5",
"xml-js": "^1.6.11",
"yauzl-promise": "^2.1.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"standard": "^12.0.1"
},
"standard": {
"env": [
"mocha"
]
}
}