-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "weacast-loader",
"description": "Weather forecast model data dowloader for Weacast",
"version": "1.10.0",
"homepage": "https://github.com/weacast/weacast-loader",
"type": "module",
"keywords": [
"weacast",
"weacast-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/weacast/weacast-loader.git"
},
"author": {
"name": "Weacast contributors",
"url": "https://github.com/weacast"
},
"contributors": [],
"bugs": {
"url": "https://github.com/weacast/weacast-loader/issues"
},
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version --force patch",
"release:minor": "npm version --force minor",
"release:major": "npm version --force major",
"lint": "standard *.js test/**/*.js --fix",
"mocha": "cross-env NODE_CONFIG_DIR=./test/config/ mocha --exit",
"coverage": "c8 npm run mocha",
"test": "npm run lint && npm run coverage"
},
"standard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"dependencies": {},
"devDependencies": {
"c8": "^7.11.2",
"chai": "^4.2.0",
"chai-lint": "^0.1.1",
"cross-env": "^4.0.0",
"mocha": "^9.0.0",
"nock": "^9.3.2",
"shx": "^0.3.2",
"standard": "^17.0.0",
"fs-extra": "^4.0.2",
"mongodb": "^3.6.2"
},
"peerDependencies": {
"@kalisio/krawler": "2.7.0",
"@weacast/grib2json": "^2.2.0",
"@weacast/gtiff2json": "^2.2.0"
}
}