-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 2.23 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
44
45
46
47
48
49
50
51
{
"name": "antville",
"version": "1.618",
"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 owner’s choice and server power than by software limitations).",
"main": "main.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"claustra:add": "tools/claustra/add-claustra.js",
"build": "run-p --continue-on-error --print-label build:*",
"build:main.js": "browserify tools/client/main.js --outfile static/scripts/main.min.js",
"build:editor.js": "browserify tools/client/editor.js --outfile static/scripts/editor.min.js",
"build:gallery.js": "browserify tools/client/gallery.js --outfile 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",
"patch:add": "tools/updater/add-patch.js",
"patch:apply": "tools/updater/run-patch.js",
"watch": "run-p --continue-on-error --print-label watch:*",
"watch:main.js": "onchange tools/client/main.js -- npm run build:main.js",
"watch:main.css": "onchange tools/client/main.less -- npm run build:main.css",
"watch:editor.js": "onchange tools/client/editor.js -- npm run build:editor.js",
"watch:editor.css": "onchange tools/client/editor.less -- npm run build:editor.css",
"watch:gallery.js": "onchange tools/client/gallery.js -- npm run build:gallery.js"
},
"repository": {
"type": "git",
"url": "https://github.com/antville/antville"
},
"author": "The Antville People",
"license": "Apache-2.0",
"dependencies": {
"alpinejs": "3.13.3",
"codemirror": "5.65.16",
"jquery": "3.7.1",
"jquery-collagePlus": "github:antville/jquery-collagePlus#0.3.4",
"js-md5": "0.8.3",
"uikit": "2.27.4"
},
"devDependencies": {
"browserify": "17.0.0",
"generate-license-file": "3.0.1",
"jsdoc": "4.0.2",
"less": "4.2.0",
"less-plugin-clean-css": "1.5.1",
"npm-run-all": "4.1.5",
"onchange": "7.1.0",
"uglifyify": "5.0.2"
}
}