antville/package.json

50 lines
2.1 KiB
JSON
Raw Normal View History

{
2018-03-17 20:25:26 +01:00
"name": "antville",
"version": "1.618.0",
"description": "Antville is an open source project aimed at the development of a high performance, feature rich weblog hosting software. It can easily host up to several thousands of sites (the number of weblogs is rather limited by the installation owners choice and server power than by software limitations).",
"main": "main.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
2020-05-17 21:26:42 +02:00
"add-claustra": "tools/claustra/add-claustra.js",
"add-patch": "tools/updater/add-patch.js",
2020-06-14 17:47:39 +02:00
"patch": "tools/updater/run-patch.js",
"build:main.js": "browserify tools/client/main.js -o static/scripts/main.min.js",
"build:editor.js": "browserify tools/client/editor.js -o static/scripts/editor.min.js",
"build:gallery.js": "browserify tools/client/gallery.js -o static/scripts/gallery.min.js",
"build:main.css": "lessc --clean-css tools/client/main.less static/styles/main.min.css",
"build:editor.css": "lessc --clean-css tools/client/editor.less static/styles/editor.min.css",
"dev": "run-p -cl dev:*.js dev:*.css",
"dev:main.js": "onchange tools/client/main.js -- yarn build:main.js",
"dev:main.css": "onchange tools/client/main.less -- yarn build:main.css",
"dev:editor.js": "onchange tools/client/editor.js -- yarn build:editor.js",
"dev:editor.css": "onchange tools/client/editor.less -- yarn build:editor.css",
"dev:gallery.js": "onchange tools/client/gallery.js -- yarn build:gallery.js"
},
"repository": {
"type": "git",
"url": "https://github.com/antville/antville"
},
2018-03-17 20:25:26 +01:00
"author": "The Antville People",
"license": "Apache-2.0",
2018-03-17 20:25:26 +01:00
"dependencies": {
"alpinejs": "=2.3.3",
"codemirror": "^5.53.2",
"jquery": "^3.5.0",
2018-03-17 20:25:26 +01:00
"jquery-collagePlus": "github:antville/jquery-collagePlus#0.3.4",
"js-md5": "^0.7.3",
"uikit": "^2.27.4"
},
"devDependencies": {
"browserify": "^16.5.1",
"jsdoc": "^3.6.4",
"less": "^3.11.1",
2018-03-17 20:25:26 +01:00
"less-plugin-clean-css": "^1.5.1",
2020-06-14 17:47:39 +02:00
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"uglifyify": "^5.0.2"
}
}