forked from saulhardman/postcss-hover-media-feature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.5 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
96
97
98
99
100
101
102
{
"name": "postcss-hover-media-feature",
"version": "1.0.2",
"description": "PostCSS plugin that extracts and wraps rules containing `:hover` pseudo-classes in `@media (hover: hover) {}` media queries",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"media",
"feature",
"query",
"hover",
"touch"
],
"main": "index.cjs.js",
"module": "index.es.mjs",
"files": [
"index.cjs.js",
"index.cjs.js.map",
"index.es.mjs",
"index.es.mjs.map"
],
"scripts": {
"lint": "prettier '*.{md,yml}' --check && eslint-ci .",
"lint:fix": "prettier '*.{md,yml}' --write && eslint-ci . --fix",
"test": "jest-ci --coverage",
"build": "rollup -c",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"author": "Saul Hardman <[email protected]>",
"license": "MIT",
"repository": "saulhardman/postcss-hover-media-feature",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@logux/eslint-config": "^40.0.5",
"@rollup/plugin-json": "^4.0.1",
"auto-changelog": "^2.2.1",
"eslint": "^7.10.0",
"eslint-ci": "^1.0.0",
"eslint-config-postcss": "^4.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettierx": "^0.14.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^22.0.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-ci": "^0.1.1",
"jest-cli": "^26.4.2",
"lint-staged": "^10.4.0",
"postcss": "^8.1.1",
"prettier": "^2.2.1",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.3.3"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{md,yml}": "prettier --write"
},
"eslintConfig": {
"extends": "eslint-config-postcss",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"rules": {
"jest/expect-expect": "off"
}
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "none"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"postcss-selector-parser": "^6.0.4"
}
}