-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "MMM-MeteoFrance",
"version": "1.1.4",
"description": "MagicMirror² module that gets weather forecast data from Meteo France",
"keywords": [
"magicmirror",
"weather",
"meteofrance",
"french"
],
"homepage": "https://github.com/bugsounet/MMM-MeteoFrance#readme",
"bugs": {
"url": "https://github.com/bugsounet/MMM-MeteoFrance/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugsounet/MMM-MeteoFrance"
},
"license": "MIT",
"author": [
"bugsounet"
],
"main": "MMM-MeteoFrance.js",
"scripts": {
"clean": "rm -rf node_modules package-lock.json",
"dev": "cd installer && node dev.js",
"dev:src": "cd installer && node src.js",
"lint": "eslint . --config eslint.config.mjs",
"lint:fix": "eslint . --config eslint.config.mjs --fix",
"postinstall": "installer/postinstall.sh -m",
"preinstall": "installer/preinstall.sh",
"reset": "rm -f *.js && git reset --hard",
"test": "npm run lint",
"test:minify": "cd installer && node minify.js",
"update": "installer/update.sh"
},
"dependencies": {
"esbuild": "^0.24.2",
"fdir": "^6.4.2",
"meteofrance_api": "^1.2.4",
"weathericons": "^2.1.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-package-json": "^0.19.0"
},
"rev": "250103"
}