-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "mmm-rain-map",
"version": "2.9.2",
"description": "A Rain Radar Map based on the Rainviewer API for the MagicMirror² platform.",
"main": "MMM-RAIN-MAP.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jalibu/MMM-RAIN-MAP.git"
},
"keywords": [
"magicmirror",
"weather",
"rain",
"leaflet",
"map",
"radar",
"clouds"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jalibu/MMM-RAIN-MAP/issues"
},
"homepage": "https://github.com/jalibu/MMM-RAIN-MAP#readme",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --sourcemap=inline",
"dev:watch": "npm run dev -- --watch",
"lint": "eslint . --ignore-pattern '*.js' && prettier --check .",
"lint:fix": "eslint --fix . --ignore-pattern '*.js' && prettier --write ."
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/magicmirror-module": "^2.16.5",
"eslint": "^9.9.1",
"leaflet": "^1.9.4",
"prettier": "^3.3.3",
"rollup": "^4.21.1",
"rollup-plugin-banner2": "^1.3.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}