-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.76 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "dmphub-ui-kit",
"version": "1.0.0",
"description": "The toolkit for the dmphub-ui repository",
"main": "index.html",
"scripts": {
"copy-install": "echo $(tput setaf 4)Copying tool configuration files to dmphub-ui repo$(tput sgr 0)... && cp -prv browserslist-stats.json fractal_subtheme fractal.js gulpfile.js package-lock.json package.json postcss.config.js ../dmphub-ui/ && echo $(tput setaf 4)Moving over to dmphub-ui repo$(tput sgr 0)... && cd ../dmphub-ui/ && echo $(tput setaf 4)Installing node packages within dmphub-ui repo$(tput sgr 0)... && npm install && echo $(tput setaf 4)Moving back to dmphub-ui-kit repo$(tput sgr 0)... && cd ../dmphub-ui-kit/ && echo $(tput setaf 4)All done.$(tput sgr 0)",
"starttestserver": "http-server ./dist/ -c-1 -s",
"stoptestserver": "pkill http-server",
"percy": "export PERCY_TOKEN=42d3a3a0e3e443830c2e3cb1c950a7a14cbbe8745a8e63e5634c3fb9133f7aff && percy exec -- node snapshots.js",
"a11y": "pa11y-ci --sitemap http://localhost:8080/sitemap.xml --threshold 1000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdlib/dmphub-ui-kit.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdlib/dmphub-ui-kit/issues"
},
"homepage": "https://github.com/cdlib/dmphub-ui-kit#readme",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@frctl/fractal": "^1.2.1",
"@frctl/mandelbrot": "^1.2.1",
"@percy/script": "^1.0.3",
"autoprefixer": "^9.7.4",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.2",
"gulp-sitemap": "^7.6.0",
"gulp-stylelint": "^13.0.0",
"gulp-uglify": "^3.0.2",
"http-server": "^0.12.1",
"modern-normalize": "^0.6.0",
"pa11y-ci": "^2.3.0",
"postcss-import": "^12.0.1",
"postcss-logical": "^4.0.2",
"postcss-svg": "^3.0.0",
"stylelint": "^13.0.0",
"stylelint-config-property-sort-order-smacss": "^6.0.0",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-use-logical": "^1.1.0"
},
"browserslist": [
"> 2% in my stats"
],
"eslintConfig": {
"extends": [
"plugin:compat/recommended",
"standard"
],
"globals": {
"Vue": "readonly"
},
"env": {
"browser": true
}
},
"percy": {
"version": 1,
"snapshot": {
"widths": [
400,
700,
1300
],
"min-height": 1024
}
},
"stylelint": {
"defaultSeverity": "warning",
"extends": [
"stylelint-config-standard",
"stylelint-config-sass-guidelines",
"stylelint-config-property-sort-order-smacss"
],
"plugins": [
"stylelint-use-logical"
],
"rules": {
"at-rule-empty-line-before": [
"always",
{
"ignore": [
"blockless-after-blockless",
"first-nested"
]
}
],
"csstools/use-logical": "always",
"declaration-empty-line-before": "never",
"max-nesting-depth": [
1,
{
"ignore": [
"pseudo-classes"
]
}
],
"order/properties-alphabetical-order": null,
"rule-empty-line-before": "always",
"selector-class-pattern": null,
"selector-no-qualifying-type": null
}
},
"dependencies": {}
}