forked from EnergySage/es-ds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 4.43 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
{
"name": "@energysage/es-bs-base",
"description": "Base CSS for EnergySage design system based on Bootstrap",
"version": "2.2.3",
"config": {
"version_short": "0.1"
},
"keywords": [
"css",
"sass",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"homepage": "https://energysage.com/",
"author": "EnergySage",
"contributors": [
"EnergySage, Inc."
],
"repository": {
"type": "git",
"url": "[email protected]:EnergySage/es-ds.git"
},
"bugs": {
"url": "https://github.com/EnergySage/es-ds/issues"
},
"main": "dist/js/bootstrap.js",
"sass": "scss/bootstrap.scss",
"style": "dist/css/bootstrap.css",
"scripts": {
"css": "npm-run-all css-compile css-prefix css-minify",
"css-compile": "sass scss/:dist/css/",
"css-minify": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
"css-prefix-main": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"js": "npm-run-all js-compile js-minify",
"js-compile": "npm-run-all --aggregate-output --parallel js-compile-*",
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
"js-compile-plugins": "node build/build-plugins.js",
"js-compile-plugins-coverage": "cross-env NODE_ENV=test node build/build-plugins.js",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"js-minify": "npm-run-all --aggregate-output --parallel js-minify-*",
"js-minify-standalone": "terser --compress passes=2,typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
"js-minify-bundle": "terser --compress passes=2,typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint lockfile-lint",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"release": "npm-run-all dist",
"dist": "npm-run-all --aggregate-output --parallel css js",
"build": "npm-run-all dist",
"test": "npm-run-all lint dist"
},
"peerDependencies": {
"jquery": "1.9.1 - 3",
"popper.js": "^1.16.1"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"autoprefixer": "^9.8.8",
"babel-plugin-istanbul": "^6.1.1",
"clean-css-cli": "^5.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-qunit": "^7.2.0",
"eslint-plugin-unicorn": "^46.0.0",
"find-unused-sass-variables": "^5.0.0",
"globby": "^13.1.2",
"hammer-simulator": "0.0.1",
"hugo-bin": "^0.113.0",
"ip": "^1.1.5",
"jquery": "3.7.0",
"karma": "^6.3.18",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^2.1.2",
"karma-qunit": "^4.1.2",
"karma-sinon": "^1.0.5",
"lockfile-lint": "^4.7.4",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"postcss": "^8.4.12",
"postcss-cli": "^10.0.0",
"qunit": "^2.18.2",
"rollup": "^3.2.5",
"sass": "^1.66.1",
"shelljs": "^0.8.5",
"sinon": "^15.0.0",
"stylelint": "^14.7.1",
"stylelint-config-twbs-bootstrap": "^7.0.0",
"terser": "^5.12.1",
"vnu-jar": "23.4.11"
},
"files": [
"dist/{css,js}/*.{css,js,map}",
"js/{src,dist}/**/*.{js,map}",
"scss/**/*.scss"
],
"license": "MIT",
"private": false,
"gitHead": "5fb889dfdb169c5995f96ec110a67331d58e9e92"
}