-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 2.1 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "postcss-sort-media-queries",
"version": "5.2.0",
"description": "PostCSS plugin for sorting and combining CSS media queries with mobile first / **desktop first methodologies",
"keywords": [
"postcss",
"postcss-plugin",
"css",
"css-optimizations",
"sort",
"mobile-first",
"desktop-first",
"mediaquery",
"media-queries",
"mq",
"responsive-css",
"combine-media-query",
"sort-media-query",
"css-mqpacker",
"node-css-mqpacker"
],
"author": "Yunus Gaziyev <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yunusga/postcss-sort-media-queries.git"
},
"bugs": {
"url": "https://github.com/yunusga/postcss-sort-media-queries/issues"
},
"homepage": "https://github.com/yunusga/postcss-sort-media-queries",
"scripts": {
"test": "jest-ci --coverage && eslint",
"refresh-deps": "rm -rf node_modules && rm package-lock.json && npm i"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"sort-css-media-queries": "2.2.0"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"eslint": "^8.3.0",
"eslint-ci": "^1.0.0",
"eslint-plugin-jest": "^25.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-ci": "^0.1.1",
"jest-cli": "^27.3.1",
"lint-staged": "^13.2.1",
"postcss": "^8.4.23",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-media-minmax": "^5.0.0",
"postcss-nested": "^5.0.6"
},
"peerDependencies": {
"postcss": "^8.4.23"
},
"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
}
}