-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.75 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
{
"name": "archdroid-org.github.io",
"version": "0.1.0",
"author": "redtide <[email protected]>",
"homepage": "https://archdroid-org.github.io",
"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/style.scss assets/css/style.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/style.min.css node_modules/bootstrap/dist/css/bootstrap.min.css assets/css/style.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=scripts.min.js.map\" --output assets/js/scripts.min.js node_modules/jquery/dist/jquery.min.js node_modules/bootstrap/dist/js/bootstrap.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/archdroid-org/archdroid-org.github.io.git"
},
"bugs": {
"url": "https://github.com/archdroid-org/archdroid-org.github.io/issues"
},
"license": "CC0-1.0",
"engines": {
"node": ">= 10.13.0"
},
"dependencies": {
"autoprefixer": "^9.7.6",
"bootstrap": "^4.4.1",
"clean-css-cli": "^4.3.0",
"jquery": ">=3.5.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"postcss-cli": "^7.1.0",
"uglify-js": "^3.9.1"
}
}