forked from barnabycolby/MMM-Carousel
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.18 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.18 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "mmm-carousel",
"version": "0.7.3",
"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.",
"keywords": [
"magic",
"mirror",
"carousel",
"navigation",
"move",
"resize modules",
"slides",
"tabs",
"pages"
],
"homepage": "https://github.com/shbatm/MMM-Carousel/#readme",
"bugs": {
"url": "https://github.com/shbatm/MMM-Carousel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shbatm/MMM-Carousel.git"
},
"license": "MIT",
"author": "Barnaby Colby (https://github.com/barnabycolby/)",
"contributors": [
{
"name": "shbatm",
"url": "https://github.com/shbatm/"
}
],
"main": "MMM-Carousel.js",
"type": "module",
"scripts": {
"demo:global": "cd ../../ && MM_CONFIG_FILE=modules/MMM-Carousel/demo.config.global.js node --run start:dev",
"demo:slides": "cd ../../ && MM_CONFIG_FILE=modules/MMM-Carousel/demo.config.slides.js node --run start:dev",
"demo:positional": "cd ../../ && MM_CONFIG_FILE=modules/MMM-Carousel/demo.config.positional.js node --run start:dev",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"prepare": "node -e \"try{require('simple-git-hooks').run()}catch(e){}\"",
"release": "commit-and-tag-version",
"test": "node --run test:unit && node --run lint && node --run test:spelling",
"test:spelling": "cspell . .github",
"test:unit": "node --test tests/unit/*.test.js"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.2",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.8.0",
"commit-and-tag-version": "^12.6.1",
"cspell": "^9.6.4",
"eslint": "^9.39.2",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^62.5.5",
"globals": "^17.3.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"simple-git-hooks": "^2.13.1"
}
}