-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
38 lines (38 loc) · 1.03 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-jsontable",
"version": "1.3.0",
"description": "A module for the MagicMirror² project which creates a table filled with a list gathered from a json request.",
"repository": {
"type": "git",
"url": "https://github.com/timdows/MMM-JsonTable"
},
"keywords": [
"magic mirror",
"JSON",
"table"
],
"author": {
"name": "timdows",
"url": "https://github.com/timdows"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^8.57.0",
"@pilaton/eslint-config-markdown": "^1.2.0",
"@stylistic/eslint-plugin": "^1.7.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.15.0",
"globals": "^15.0.0",
"markdownlint-cli": "^0.39.0",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint . && markdownlint . --ignore node_modules && prettier --check .",
"lint:fix": "eslint --fix . && markdownlint . --ignore node_modules --fix && prettier --write .",
"test": "npm run lint"
}
}