forked from postcss/postcss-dark-theme-class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.84 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
{
"name": "postcss-dark-theme-class",
"version": "0.5.2",
"description": "PostCSS plugin to make dark/light theme switcher by copying styles from media query to special class",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"dark",
"dark-theme"
],
"scripts": {
"test": "jest --coverage && eslint ."
},
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "postcss/postcss-dark-theme-class",
"engines": {
"node": ">=12.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
"peerDependencies": {
"postcss": "^8.2.14"
},
"devDependencies": {
"@logux/eslint-config": "^45.4.1",
"clean-publish": "^2.2.0",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^32.0.1",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"postcss": "^8.2.14",
"postcss-sharec-config": "^0.4.1",
"prettier": "^2.2.1",
"simple-git-hooks": "^2.4.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"eslintConfig": {
"extends": "@logux/eslint-config"
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"sharec": {
"config": "postcss-sharec-config",
"version": "0.4.1"
}
}