forked from postcss/postcss-mixins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.91 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
{
"name": "postcss-mixins",
"version": "7.0.1",
"description": "PostCSS plugin for mixins",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"mixins",
"sass"
],
"scripts": {
"test": "jest-ci --coverage && eslint-ci ."
},
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "postcss/postcss-mixins",
"engines": {
"node": ">=10.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
"peerDependencies": {
"postcss": "^8.1.0"
},
"dependencies": {
"globby": "^11.0.1",
"postcss-js": "^3.0.1",
"postcss-simple-vars": "^6.0.1",
"sugarss": "^3.0.1"
},
"devDependencies": {
"@logux/eslint-config": "^40.0.5",
"clean-publish": "^1.1.8",
"eslint": "^7.10.0",
"eslint-ci": "^1.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"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",
"lint-staged": "^10.4.0",
"postcss": "^8.1.0",
"postcss-sharec-config": "^0.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"security/detect-non-literal-require": "off",
"node/global-require": "off",
"consistent-return": "off"
}
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"sharec": {
"config": "postcss-sharec-config",
"version": "0.1.8"
}
}