forked from ianperrin/MMM-Formula1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "mmm-formula1",
"version": "2.0.0",
"description": "A Formula 1 module for MagicMirror².",
"scripts": {
"test": "npm run test:prettier && npm run test:js && npm run test:css",
"test:unit": "NODE_ENV=test mocha tests --recursive",
"test:prettier": "prettier --check **/*.{js,css,json,md,yml}",
"test:js": "eslint *.js --config .eslintrc.json --quiet",
"test:css": "stylelint **/*.css --config .stylelintrc.json",
"lint:prettier": "prettier --write **/*.{js,css,json,md,yml}",
"lint:js": "eslint *.js --config .eslintrc.json --fix",
"lint:css": "stylelint **/*.css --config .stylelintrc.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianperrin/MMM-Formula1"
},
"keywords": [
"magic mirror",
"smart mirror",
"Formula1",
"module"
],
"author": "Ian Perrin/Cirdan",
"contributors": "https://github.com/ianperrin/MMM-Formula1/graphs/contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianperrin/MMM-Formula1/issues"
},
"homepage": "https://github.com/ianperrin/MMM-Formula1#readme",
"dependencies": {
"axios": ">=1.6.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-jsdoc": "^40.0.3",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"stylelint": "^15.3.0",
"stylelint-config-standard": "^31.0.0",
"stylelint-prettier": "^3.0.0",
"module-alias": "^2.2.2",
"chai": "^4.3.7",
"mocha": "^10.2.0"
}
}