forked from Webstop/core-styles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 4.44 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
{
"name": "core-styles",
"version": "0.5.14",
"description": "The definitive source of styling guidelines for grocery website features.",
"private": true,
"author": "Greg Hemphill",
"license": "private",
"main": "dist/assets/css/core-styles-defaults.css",
"dependencies": {
"bootstrap": "^v4.3.1",
"core-icons": "https://github.com/Webstop/core-icons.git#v0.3.3",
"jquery": "^3.4.1",
"js-cookie": "^2.2.0",
"popper.js": "^1.14.7"
},
"scripts": {
"bash": "bash",
"css-DISABLED": "npm-run-all --sequential css-prefix css-minify",
"css": "npm-run-all --parallel css-compile --sequential css-prefix css-minify",
"css-orig": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify",
"css-NOTES": "TODO: need to fix issue where css-lint errors because stylelint can't be found, yet it's installed.",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/core-styles-defaults.scss dist/css/core-styles-defaults.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/docs/core-style-guide.scss assets/css/docs/core-style-guide.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/core-themes/_country-farm.scss dist/css/core-themes/country-farm.css",
"css-compile-DISABLED": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/core-styles.scss dist/css/core-styles.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/docs/core-style-guide.scss assets/css/docs/core-style-guide.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/core-themes/_country-farm.scss dist/css/core-themes/country-farm.css",
"css-lint": "stylelint --syntax scss \"scss/**/*.scss\"",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/core-styles-defaults.min.css dist/css/core-styles-defaults.css && cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/core-themes/country-farm.min.css dist/css/core-themes/country-farm.css",
"icons": "cp -R ./node_modules/core-icons/assets/fonts ./dist",
"images-move": "cp -R ./images ./dist",
"js-move": "cp -R ./js ./dist",
"dist": "npm-run-all css icons js-move images-move",
"js-lint": "eslint js/src js/tests build/",
"watch": "npm-run-all --parallel watch-*",
"watch-css": "nodemon --watch scss/ --ext scss --exec \"npm run css\""
},
"devDependencies": {
"bootstrap-docs": "github:hemphill/bootstrap-docs#v4.1.3-docs",
"@babel/cli": "7.0.0-beta.52",
"@babel/core": "7.0.0-beta.52",
"@babel/preset-env": "7.0.0-beta.52",
"autoprefixer": "^8.6.5",
"babel-eslint": "^8.2.5",
"babel-plugin-istanbul": "^4.1.6",
"broken-link-checker": "^0.7.8",
"bundlesize": "^0.15.3",
"clean-css-cli": "^4.1.11",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"devicons": "^1.8.0",
"eslint": "^5.0.1",
"eslint-plugin-compat": "^2.4.0",
"glob": "^7.1.2",
"htmllint-cli": "^0.0.7",
"http-server": "^0.11.1",
"jsunitsaucelabs": "^1.3.2",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-detect-browsers": "^2.3.2",
"karma-firefox-launcher": "^1.1.0",
"karma-qunit": "^2.1.0",
"karma-sinon": "^1.0.5",
"node-sass": "^4.12.0",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"postcss-cli": "^5.0.1",
"qunit": "^2.6.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "4.0.0-beta.5",
"rollup-plugin-node-resolve": "^3.3.0",
"shelljs": "^0.8.2",
"shx": "^0.3.1",
"sinon": "^6.1.2",
"sri-toolbox": "^0.2.0",
"stylelint": "^9.4.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.1.3",
"uglify-js": "^3.4.3",
"vnu-jar": "^18.3.0",
"workbox-build": "^3.3.1"
},
"engines": {
"node": ">=6"
},
"files": [
".babelrc.js",
".eslintignore",
".stylelintignore",
".stylelintrc",
"Gemfile",
"build",
".eslintrc.json",
"site/",
"dist/",
"js/{src,dist}/",
"scss/"
]
}