forked from yunusga/postcss-sort-media-queries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.67 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
71
72
73
74
75
76
77
78
79
80
{
"name": "postcss-sort-container-queries",
"version": "1.0.0",
"description": "PostCSS plugin for combine and sort CSS container queries with mobile first or desktop first methods.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sort",
"container-queries",
"containerquery",
"mq",
"optimization"
],
"author": "Yunus Gaziev <yunusga@yandex.ru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lmestel/postcss-sort-container-queries.git"
},
"bugs": {
"url": "https://github.com/lmestel/postcss-sort-container-queries/issues"
},
"homepage": "https://github.com/lmestel/postcss-sort-container-queries",
"scripts": {
"test": "jest --coverage && eslint ."
},
"engines": {
"node": ">=12.2.0"
},
"dependencies": {
"sort-css-media-queries": "2.0.4"
},
"devDependencies": {
"eslint": "^8.11.0",
"eslint-plugin-jest": "^26.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.6",
"postcss": "^8.4.12"
},
"peerDependencies": {
"postcss": "^8.4.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"sortCssMQ": {
"unitlessMqAlwaysFirst": false
}
}