-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.06 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
{
"name": "stmark",
"version": "1.4.2",
"description": "St Mark School WP child theme.",
"repository": "https://github.com/DioceseOfCharlotte/stmark",
"private": true,
"license": "GNU General Public License v2 or later",
"cssVersion": "149",
"scripts": {
"dist": "npm run build && npm run minify && npm run prefixStyle && npm run minifyStyle && npm run fixStyle",
"build": "postcss src/styles/index.css > css/sm-forms.css && npm run prefix && npm run format",
"prefix": "postcss css/sm-forms.css -u autoprefixer -o css/sm-forms.css --no-map",
"prefixStyle": "postcss style.css -u autoprefixer -o style.css --no-map",
"minify": "postcss css/sm-forms.css -u cssnano -o css/sm-forms-$npm_package_cssVersion.css --no-map",
"minifyStyle": "postcss style.css -u cssnano -o style.min.css --no-map",
"lint": "stylelint css/sm-forms.css",
"fix": "stylelint css/sm-forms.css --fix",
"fixStyle": "stylelint style.css --fix",
"format": "stylefmt css/sm-forms.css"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"browserslist": "^2.5.1",
"cssnano": "^3.10.0",
"postcss-cli": "^4.1.1",
"postcss-color-function": "^4.0.0",
"postcss-custom-media": "^6.0.0",
"postcss-discard-comments": "^2.0.4",
"postcss-discard-empty": "^2.1.0",
"postcss-import": "^11.0.0",
"postcss-increase-specificity": "^0.6.0",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^2.1.2",
"postcss-plugin-context": "^2.0.0",
"postcss-simple-vars": "^4.1.0",
"postcss-strip-units": "^1.2.0",
"stylefmt": "^6.0.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0"
},
"stylelint": {
"defaultSeverity": "warning",
"extends": "stylelint-config-standard",
"rules": {
"indentation": "tab"
}
},
"browserslist": [
"> 1%",
"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"
]
}