-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "MMM-SmartWater",
"version": "1.0.0",
"description": "MagicMirror module that displays water level from a remote sensor.",
"main": "MMM-SmartWater.js",
"author": "György Balássy",
"license": "MIT",
"scripts": {
"lint": "npm run jsonlint & npm run eslint & npm run markdownlint & npm run stylelint",
"eslint": "eslint *.js",
"jsonlint": "jsonlint --quiet --comments translations && jsonlint --quiet --comments .eslintrc.json .markdownlint.json .stylelintrc.json package.json",
"markdownlint": "markdownlint *.md",
"stylelint": "stylelint **/*.css"
},
"repository": {
"type": "git",
"url": "git://github.com/balassy/MMM-SmartWater"
},
"keywords": [
"MagicMirror",
"module",
"water level",
"RaspberryPi"
],
"devDependencies": {
"@prantlf/jsonlint": "^11.7.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"markdownlint-cli": "^0.33.0",
"stylelint": "^15.1.0",
"stylelint-config-standard": "^30.0.1"
},
"dependencies": {
"body-parser": "^1.20.1"
}
}