csv-metadata-quality-web/package.json

18 lines
648 B
JSON
Raw Normal View History

2021-03-11 19:26:33 +01:00
{
"name": "csv-metadata-quality-web",
"version": "0.0.1",
"description": "Simple web interface for the DSpace CSV Metadata Quality tool.",
"author": "Alan Orth",
"license": "AGPL-3.0-only",
"devDependencies": {
"bootstrap": "^5.0.1",
"clean-css-cli": "^5.3.0",
"sass": "^1.32.13"
2021-03-11 19:26:33 +01:00
},
"scripts": {
"build:css": "sass --style expanded source/scss/style.scss static/css/style.css.tmp && cleancss -O1 --format breakWith=lf --with-rebase static/css/style.css.tmp -o static/css/style.min.css",
2021-03-11 19:26:33 +01:00
"build": "npm run build:css && npm run clean",
"clean": "rm static/css/style.css.tmp static/css/style.css.tmp.map"
2021-03-11 19:26:33 +01:00
}
}