forked from sfz/sfz.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.85 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
{
"name": "sfzformat",
"version": "0.2.0",
"author": "SFZ Format Organization",
"homepage": "https://sfzformat.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/sass/sass --style=expanded _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 -O1 --with-rebase --source-map --source-map-inline-sources --output assets/css/style.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/@popperjs/core/dist/umd/popper.min.js node_modules/bootstrap/dist/js/bootstrap.min.js node_modules/bootstrap-table/dist/bootstrap-table.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": "[email protected]:sfzformat/sfzformat.github.io.git"
},
"bugs": {
"url": "https://github.com/sfzformat/sfzformat.github.io/issues"
},
"license": "CC0-1.0",
"engines": {
"node": ">= 10.13.0"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"bootstrap": "5.3.0",
"bootstrap-table": "1.21.4",
"caniuse-lite": "^1.0.30001480",
"clean-css-cli": "^5.3.3",
"jquery": ">=3.5.0",
"npm-run-all": "^4.1.5",
"@popperjs/core": "2.11.8",
"postcss": "^8.0.0",
"postcss-cli": "^8.0.0",
"sass": "^1.42.1",
"uglify-js": "^3.14.2"
}
}