-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
105 lines (105 loc) · 3.95 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
{
"name": "core-styles",
"version": "0.6.20",
"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": {
"ahoy.js": "0.4.0",
"bootstrap-4": "github:webstop/bootstrap-4#v4.6.0-cs2",
"core-icons": "https://github.com/Webstop/core-icons.git#v0.3.3",
"jquery": "3.6.0",
"js-cookie": "2.2.1",
"jsbarcode": "3.11.5",
"popper.js": "1.16.1"
},
"scripts": {
"bash": "bash",
"css": "npm-run-all --parallel css-compile --sequential css-prefix",
"css-orig": "npm-run-all --parallel css-lint css-compile css-compile-docs --sequential css-prefix",
"css-NOTES": "TODO: need to fix issue where css-lint errors because stylelint can't be found, yet it's installed.",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/",
"css-compile-docs": "sass --style expanded --source-map --embed-sources --no-error-css scss/docs/:assets/css/docs/",
"old-css-compile-old": "sass --style expanded --source-map --embed-sources --no-error-css scss/core-styles-defaults.scss dist/css/core-styles-defaults.css && sass --style expanded --source-map --embed-sources --no-error-css scss/docs/core-style-guide.scss assets/css/docs/core-style-guide.css",
"css-lint": "stylelint --syntax scss \"scss/**/*.scss\"",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"icons": "cp -R ./node_modules/core-icons/assets/fonts ./dist",
"images-move": "cp -R ./images ./dist",
"js-move": "rm -rf dist/js/core-styles ; cp -R js dist",
"js-ahoy-move": "rm -rf dist/js/ahoy ; cp -R node_modules/ahoy.js/dist dist/js/ahoy",
"js-jsbarcode-move": "cp -R ./node_modules/ahoy.js/dist ./dist/js/ahoy",
"js-build": "rollup -c",
"dist": "npm-run-all css icons js-move js-ahoy-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\"",
"Xwatch-js": "rollup -c -w"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"autoprefixer": "^10.4.0",
"babel-plugin-istanbul": "^6.1.1",
"bootstrap-docs": "github:hemphill/bootstrap-docs#v4.1.3-docs",
"bundlewatch": "^0.3.2",
"clean-css-cli": "^5.4.2",
"cross-env": "^7.0.3",
"devicons": "^1.8.0",
"eslint": "^8.1.0",
"eslint-config-xo": "^0.39.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-qunit": "^7.0.0",
"eslint-plugin-unicorn": "^37.0.1",
"find-unused-sass-variables": "^3.1.0",
"glob": "^7.2.0",
"globby": "^11.0.4",
"hammer-simulator": "0.0.1",
"hugo-bin": "^0.76.1",
"ip": "^1.1.5",
"karma": "^6.3.6",
"karma-browserstack-launcher": "1.4.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^2.1.1",
"karma-qunit": "^4.1.2",
"karma-sinon": "^1.0.5",
"linkinator": "^2.14.4",
"lockfile-lint": "^4.6.2",
"sass": "^1.49.8",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.1",
"qunit": "^2.17.2",
"rollup": "^2.58.3",
"shelljs": "^0.8.4",
"sinon": "^7.5.0",
"stylelint": "^13.13.1",
"stylelint-config-twbs-bootstrap": "^2.2.4",
"terser": "^5.9.0",
"vnu-jar": "21.10.12"
},
"engines": {
"node": ">=6"
},
"files": [
".babelrc.js",
".eslintignore",
".stylelintignore",
".stylelintrc",
"Gemfile",
"build",
".eslintrc.json",
"site/",
"dist/",
"js/{src,dist}/",
"scss/"
]
}