-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.43 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
54
55
56
{
"name": "flickity-fullscreen",
"version": "2.0.0",
"description": "Enable fullscreen view of Flickity carousels",
"main": "fullscreen.js",
"style": "fullscreen.css",
"peerDependencies": {
"flickity": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.10.0",
"eslint-plugin-metafizzy": "^2.0.1",
"stylelint": "^14.2.0",
"stylelint-config-standard": "^24.0.0"
},
"scripts": {
"test": "npm run lint",
"lintJs": "npx eslint .",
"lintCss": "npx stylelint '**/*.css'",
"lint": "npm run lintJs && npm run lintCss"
},
"keywords": [
"flickity",
"carousel",
"fullscreen"
],
"author": "David DeSandro",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/metafizzy/flickity-fullscreen.git"
},
"bugs": {
"url": "https://github.com/metafizzy/flickity-fullscreen/issues"
},
"homepage": "https://github.com/metafizzy/flickity-fullscreen#readme",
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"color-hex-case": "upper",
"comment-empty-line-before": null,
"declaration-block-no-duplicate-properties": [
true,
{
"ignore": [
"consecutive-duplicates-with-different-values"
]
}
],
"hue-degree-notation": "number",
"property-no-vendor-prefix": null,
"selector-class-pattern": null,
"string-quotes": "single"
}
}
}