forked from barnabycolby/MMM-Carousel
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.56 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
50
51
52
53
{
"name": "mmm-carousel",
"version": "0.5.1",
"description": "Displays a single MagicMirror² module at a time or in groups of slides, rotating through the list of configured modules in a carousel-like fashion.",
"main": "MMM-Carousel.js",
"repository": {
"type": "git",
"url": "git+https://github.com/shbatm/MMM-Carousel.git"
},
"keywords": [
"magic",
"mirror",
"carousel",
"navigation",
"move",
"resize modules",
"slides",
"tabs",
"pages"
],
"author": "Barnaby Colby (https://github.com/barnabycolby/)",
"contributors": [
{
"name": "shbatm",
"url": "https://github.com/shbatm/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shbatm/MMM-Carousel/issues"
},
"homepage": "https://github.com/shbatm/MMM-Carousel/#readme",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.12.0",
"cspell": "^8.16.1",
"eslint": "^9.16.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.13.0",
"markdownlint-cli": "^0.43.0",
"prettier": "^3.4.2",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2"
},
"scripts": {
"lint": "eslint . && stylelint **/*.css && markdownlint . --ignore node_modules && prettier --check .",
"lint:fix": "eslint . --fix && stylelint **/*.css --fix && markdownlint . --ignore node_modules --fix && prettier --write .",
"release": "npx bumpp --no-push",
"test": "npm run lint && npm run test:spelling",
"test:spelling": "cspell ."
}
}