forked from postcss/benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.11 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
{
"private": true,
"scripts": {
"lint-staged": "lint-staged",
"test": "eslint . && gulp"
},
"dependencies": {
"autoprefixer": "^9.6.5",
"css-tree": "^1.0.0-alpha14",
"cssom": "^0.4.1",
"fs-extra": "^8.1.0",
"gonzales": "^1.0.7",
"gonzales-pe": "^4.2.4",
"gulp": "^4.0.2",
"gulp-bench": "^1.1.0",
"gulp-bench-summary": "^0.1.0",
"less": "^3.10.3",
"load-resources": "^0.1.1",
"mensch": "^0.3.3",
"myth": "^1.5.0",
"node-sass": "^4.12.0",
"parserlib": "^1.1.1",
"postcss": "^7.0.18",
"postcss-calc": "^7.0.1",
"postcss-mixins": "^6.2.2",
"postcss-nested": "^4.1.2",
"postcss-selector-parser": "^6.0.2",
"postcss-simple-vars": "^5.0.2",
"postcss-value-parser": "^4.0.2",
"rework": "^1.0.1",
"sass": "^1.23.0",
"stylecow-core": "^2.5.0",
"stylecow-plugin-calc": "^2.0.0",
"stylecow-plugin-nested-rules": "^5.0.1",
"stylecow-plugin-prefixes": "^6.0.5",
"stylecow-plugin-variables": "^5.1.4",
"stylis": "^3.5.0",
"stylis-calc": "^0.0.1",
"stylis-custom-properties": "^0.0.4",
"stylis-mixin": "^0.0.1",
"through2": "^3.0.1"
},
"devDependencies": {
"@logux/eslint-config": "^33.0.0",
"@logux/sharec-config": "^0.5.4",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^12.1.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2"
},
"engines": {
"node": ">=10.0.0"
},
"eslintConfig": {
"extends": "@logux/eslint-config/node",
"rules": {
"security/detect-non-literal-require": "off",
"global-require": "off"
}
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"sharec": {
"config": "@logux/sharec-config",
"version": "0.5.4"
}
}