-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "k-meteofrance",
"description": "A Krawler job designed to scrape data from the Météo-France public API",
"version": "0.1.0",
"homepage": "https://github.com/kalisio/k-meteofrance",
"type": "module",
"keywords": [
"krawler",
"meteo",
"radar",
"kargo"
],
"repository": {
"type": "git",
"url": "git://github.com/kalisio/k-meteofrance.git"
},
"author": {
"name": "Kalisio",
"url": "https://github.com/kalisio"
},
"contributors": [],
"bugs": {
"url": "https://github.com/kalisio/k-meteofrance/-/issues"
},
"scripts": {
"test": "echo \"Warning: no test specified\"",
"mmdc": "./node_modules/.bin/mmdc -i jobfile.mmd -o jobfile.png -w 512",
"release:major": "npm version --force major",
"release:minor": "npm version --force minor",
"release:patch": "npm version --force patch",
"postversion": "git push origin HEAD --tags"
},
"dependencies": {
"lodash": "^4.17.21",
"moment": "^2.29.3",
"winston": "^3.17.0"
},
"devDependencies": {},
"peerDependencies": {
"@kalisio/krawler": "2.6.0"
}
}