-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
{
"name": "ezid-ui-toolkit",
"version": "1.0.0",
"description": "UI toolkit for EZID UI library",
"main": "index.html",
"scripts": {
"stylelintfix": "stylelint \"dev/scss/*\" --fix",
"stylelintfix_legacy": "stylelint \"dev/legacy-scss/*\" --fix",
"ui:watch": "gulp",
"ui:build": "gulp build",
"gulp": "gulp"
},
"author": "CDLUC3",
"license": "MIT",
"devDependencies": {
"browser-sync": "^3.0.3",
"browsersync-ssi": "^0.2.4",
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^6.1.0",
"gulp-cache": "^1.1.3",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^2.3.0",
"gulp-gh-pages": "^0.5.4",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^4.1.0",
"gulp-jshint": "^2.1.0",
"gulp-lb-include": "^0.1.1",
"gulp-modernizr": "^4.0.4",
"gulp-postcss": "^9.0.1",
"gulp-sass": "^5.1.0",
"gulp-uglify": "^3.0.2",
"gulp-useref": "^3.1.3",
"jshint": "^2.13.6",
"node-sass": "^9.0.0",
"postcss-assets": "^6.0.0",
"run-sequence": "^2.2.1",
"stylelint": "^16.2.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-scss": "^6.1.0",
"stylelint-webpack-plugin": "^5.0.0"
},
"stylelint": {
"defaultSeverity": "warning",
"extends": [
"stylelint-config-recommended-scss",
"stylelint-config-property-sort-order-smacss"
],
"rules": {
"max-nesting-depth": [
4,
{
"ignore": [
"blockless-at-rules",
"pseudo-classes"
]
}
],
"no-descending-specificity": null
}
},
"overrides": {
"graceful-fs": "^4.2.11"
}
}