-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "gut-check",
"version": "1.0.0",
"description": "WP Plugin for CSS debugging",
"author": "Marty Helmick",
"license": "GPL-2.0+",
"homepage": "https://github.com/m-e-h/gut-check",
"scripts": {
"build": "npm run css && npm run css:editor",
"css": "postcss src/css --dir dist/style",
"css:editor": "postcss src/css --dir dist/editor --env editor"
},
"devDependencies": {
"browserslist": "^4.5.4",
"eslint": "^5.15.3",
"eslint-config-wordpress": "^2.0.0",
"postcss-cli": "^6.1.2",
"postcss-editor-styles": "^0.1.4",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.6.0",
"stylelint": "^9.10.1",
"stylelint-config-wordpress": "^13.1.0"
},
"stylelint": {
"defaultSeverity": "warning",
"extends": "stylelint-config-wordpress"
},
"eslintConfig": {
"extends": "wordpress"
},
"browserslist": [
"> 2%",
"ie >= 11",
"last 1 Android versions",
"last 1 ChromeAndroid versions",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Edge versions",
"last 2 Opera versions"
]
}