-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
33 lines (33 loc) · 985 Bytes
/
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
{
"name": "airquality",
"version": "2.1.0",
"description": "A module for the MagicMirror² to display a location's air quality index.",
"main": "MMM-AirQuality.js",
"homepage": "https://github.com/CFenner/MMM-AirQuality#readme",
"bugs": {
"url": "https://github.com/CFenner/MMM-AirQuality/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CFenner/MMM-AirQuality.git"
},
"keywords": [
"magicmirror",
"aqi",
"air-quality"
],
"author": "Christopher Fenner",
"license": "MIT",
"scripts": {
"validate": "npm run validate:js && npm run validate:md",
"validate:js": "eslint *.js",
"validate:md": "markdownlint *.md",
"fix:js": "eslint **/*.js --fix"
},
"devDependencies": {
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"markdownlint": "0.37.4",
"markdownlint-cli": "0.44.0"
}
}