mirror of
https://github.com/ISEAL-Community/iseal-core.git
synced 2024-11-16 20:07:05 +01:00
27 lines
918 B
JSON
27 lines
918 B
JSON
|
{
|
||
|
"name": "iseal-schema",
|
||
|
"version": "0.0.1",
|
||
|
"description": "Generate ISEAL schema documentation website.",
|
||
|
"scripts": {
|
||
|
"build:css": "sass --style expanded source/scss/style.scss assets/css/style.css.tmp && cleancss -O1 --format breakWith=lf --with-rebase assets/css/style.css.tmp -o assets/css/style.min.css",
|
||
|
"build:js": "uglifyjs node_modules/jquery/dist/jquery.slim.min.js node_modules/bootstrap/dist/js/bootstrap.min.js -o assets/js/bundle.min.js",
|
||
|
"build": "npm run build:css && npm run build:js && npm run clean",
|
||
|
"clean": "rm assets/css/style.css.tmp assets/css/style.css.tmp.map"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"ISEAL",
|
||
|
"dublin-core",
|
||
|
"dcterms",
|
||
|
"metadata"
|
||
|
],
|
||
|
"author": "Alan Orth",
|
||
|
"license": "GPL-3.0-only",
|
||
|
"devDependencies": {
|
||
|
"bootstrap": "^5.1.1",
|
||
|
"clean-css-cli": "^5.3.3",
|
||
|
"jquery": "^3.6.0",
|
||
|
"sass": "^1.41.1",
|
||
|
"uglify-js": "^3.14.2"
|
||
|
}
|
||
|
}
|