-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1.12 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-RemoteTemperature",
"version": "2.0.1",
"description": "MagicMirror module that displays temperature value from a remote sensor.",
"main": "MMM-RemoteTemperature.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-RemoteTemperature"
},
"keywords": [
"MagicMirror",
"module",
"temperature",
"RaspberryPi"
],
"devDependencies": {
"@prantlf/jsonlint": "^10.2.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"markdownlint-cli": "^0.23.2",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"body-parser": "^1.19.0"
}
}