-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "mmm-ff-multigeiger",
"version": "1.0.0",
"description": "Module for MagicMirror² featuring radiation data collected by the https://ecocurious.de/projekte/multigeiger-2/ project and accessed via https://multigeiger.citysensor.de/.",
"main": "MMM-FF-multigeiger.js",
"repository": {
"type": "git",
"url": "git+https://github.com/shin10/MMM-FF-multigeiger.git"
},
"keywords": [
"magic mirror",
"smart mirror",
"radiation",
"multigeiger"
],
"author": "Michael Trenkler",
"license": "ISC",
"bugs": {
"url": "https://github.com/shin10/MMM-FF-multigeiger/issues"
},
"homepage": "https://github.com/shin10/MMM-FF-multigeiger#readme",
"dependencies": {
"axios": "^0.26.0",
"d3": "^7.8.5",
"dayjs": "^1.11.10"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"prettier": "^3.1.1"
},
"scripts": {
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"test": "npm run lint"
}
}