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.0-beta2",
|
|
|
|
"clean-css-cli": "^4.3.0",
|
|
|
|
"sass": "^1.32.7"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-03-14 11:04:28 +01:00
|
|
|
"build:css": "sass --style expanded source/scss/style.scss static/css/v1/style.css.tmp && cleancss --level 1 static/css/v1/style.css.tmp -o static/css/v1/style.min.css",
|
2021-03-11 19:26:33 +01:00
|
|
|
"build": "npm run build:css && npm run clean",
|
2021-03-14 11:04:28 +01:00
|
|
|
"clean": "rm static/css/v1/style.css.tmp static/css/v1/style.css.tmp.map"
|
2021-03-11 19:26:33 +01:00
|
|
|
}
|
|
|
|
}
|