forked from wxWidgets/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 2 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
{
"name": "wxwidgets-website",
"version": "1.1.0",
"author": "Bryan Petty <[email protected]>",
"homepage": "https://www.wxwidgets.org/",
"scripts": {
"css": "node node_modules/npm-run-all/bin/run-s/index.js css-compile css-prefix css-minify",
"css-compile": "node node_modules/node-sass/bin/node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 _assets/scss/global.scss assets/css/global.css",
"css-prefix": "node node_modules/postcss-cli/bin/postcss --use autoprefixer --replace \"assets/css/*.css\" \"!assets/css/*.min.css\"",
"css-minify": "node node_modules/clean-css-cli/bin/cleancss --level 1 --source-map --source-map-inline-sources --output assets/css/global.min.css node_modules/bootstrap/dist/css/bootstrap.min.css \"node_modules/@fancyapps/fancybox/dist/jquery.fancybox.min.css\" assets/css/global.css",
"js": "node node_modules/npm-run-all/bin/run-s/index.js js-minify",
"js-minify": "node node_modules/uglify-js/bin/uglifyjs --compress --mangle --comments \"/^!/\" --source-map \"includeSources,url=global.min.js.map\" --output assets/js/global.min.js node_modules/jquery/dist/jquery.min.js node_modules/popper.js/dist/umd/popper.js node_modules/bootstrap/dist/js/bootstrap.min.js \"node_modules/@fancyapps/fancybox/dist/jquery.fancybox.min.js\" _assets/js/*.js",
"dist": "node node_modules/npm-run-all/bin/run-p/index.js css js"
},
"browserslist": [
"defaults"
],
"repository": {
"type": "git",
"url": "git://github.com/wxWidgets/website.git"
},
"bugs": {
"url": "https://github.com/wxWidgets/website/issues"
},
"license": "SEE LICENSE IN about/licence/index.md",
"engines": {
"node": ">= 6.9.0"
},
"dependencies": {
"@fancyapps/fancybox": "^3.2.5",
"autoprefixer": "^8.2.0",
"bootstrap": "^4.0.0",
"clean-css-cli": "^4.1.11",
"jquery": "^3.3.1",
"node-sass": "^4.8.3",
"npm-run-all": "^4.1.2",
"popper.js": "^1.14.1",
"postcss-cli": "^5.0.0",
"uglify-js": "^3.3.16"
}
}