This repository was archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.89 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.89 KB
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
{
"name": "cdlib-ui-kit",
"version": "1.0.0",
"description": "The toolkit for the cdlib-ui repository",
"scripts": {
"copy-config": "echo $(tput setaf 4)Copying files to cdlib-ui repo $(tput sgr 0) ... && cp -prv browserslist-stats.json fractal_subtheme fractal.js gulpfile.js package-lock.json package.json postcss.config.js ../cdlib-ui/ && echo $(tput setaf 4)All done.$(tput sgr 0)",
"copy-install": "npm run copy-config --silent && echo $(tput setaf 4)Moving over to cdlib-ui repo $(tput sgr 0) ... && cd ../cdlib-ui/ && echo $(tput setaf 4)Installing node packages within cdlib-ui repo $(tput sgr 0) ... && npm install && echo $(tput setaf 4)Moving back to cdlib-ui-kit repo $(tput sgr 0) ... && cd ../cdlib-ui-kit/ && echo $(tput setaf 4)All done.$(tput sgr 0)",
"copy-fonts": "copyfiles -f --error node_modules/source-sans/WOFF/TTF/* node_modules/source-sans/WOFF2/VAR/*.ttf.woff2 ui-assets/fonts",
"copy-images": "imagemin images/* --out-dir=ui-assets/images",
"copy-assets": "copyfiles --error ui-assets/**/* dist",
"starttestserver": "http-server ./dist/ -c-1 -s",
"stoptestserver": "pkill http-server",
"percy": "export PERCY_TOKEN=45278516a32a947f175c5573cbc679f3821fd327da42f41d67127536577edec8 && percy exec -- node snapshots.js",
"a11y": "pa11y-ci --sitemap http://localhost:8080/sitemap.xml --threshold 1000",
"parcel-watch": "parcel watch js/main.js --public-url . --dist-dir ui-assets/js --no-cache",
"parcel-build": "parcel build js/main.js --dist-dir ui-assets/js --no-cache --no-source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdlib/cdlib-ui-kit.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdlib/cdlib-ui-kit/issues"
},
"homepage": "https://github.com/cdlib/cdlib-ui-kit#readme",
"devDependencies": {
"@frctl/fractal": "^1.3.0",
"@frctl/mandelbrot": "^1.4.0",
"@percy/script": "^1.1.0",
"autoprefixer": "^9.8.0",
"copyfiles": "^2.4.1",
"del": "^5.1.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.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.3.0",
"gulp-eslint": "^6.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sitemap": "^7.6.0",
"gulp-stylelint": "^13.0.0",
"http-server": "^0.12.3",
"imagemin-cli": "^7.0.0",
"modern-normalize": "^0.6.0",
"pa11y-ci": "^2.3.0",
"parcel": "^2.0.0-rc.0",
"postcss-import": "^12.0.1",
"postcss-logical": "^4.0.2",
"postcss-svg": "^3.0.0",
"sass": "^1.49.0",
"source-sans": "^3.28.0",
"stylelint": "^13.6.0",
"stylelint-config-property-sort-order-smacss": "^6.3.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.17.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": "3.6",
"debug": false
}
]
],
"retainLines": true
},
"browserslist": [
"> 2% in my stats"
],
"eslintConfig": {
"extends": "standard",
"globals": {
"Vue": "readonly"
}
},
"percy": {
"version": 1,
"snapshot": {
"widths": [
1000
]
}
},
"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
}
},
"dependencies": {
"details-element-polyfill": "^2.4.0"
}
}