-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "KickManageArticle",
"version": "1.1.0",
"description": "",
"type": "module",
"scripts": {
"boilerplate": "cross-env KICK_CONFIG=boilerplate node ./scripts/tasks/copy.js",
"copy": "cross-env KICK_CONFIG=copy node ./scripts/tasks/copy.js",
"copyrelease": "cross-env KICK_CONFIG=release node ./scripts/tasks/copy.js",
"copypackage": "cross-env KICK_CONFIG=package node ./scripts/tasks/copy.js",
"watch": "node ./scripts/tasks/watch.js",
"cleaner": "node ./scripts/tasks/clean.js",
"archives": "cross-env node ./scripts/tasks/archives.js",
"buildintern": "npm run cleaner && npm run copyrelease && npm run copypackage && npm run archives",
"release": "npm run cleaner && npm run copyrelease && npm run copypackage && npm run archives && npm run updateXML",
"updateXML": "node ./scripts/tasks/xml.js",
"download:joomla": "sh ./scripts/joomla.sh",
"download:joomla4": "sh ./scripts/joomla4.sh",
"download:joomla5": "sh ./scripts/joomla5.sh",
"publishtag": "sh ./scripts/post.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kicktemp/plg_task_kickmanagearticle.git"
},
"keywords": [],
"author": {
"name": "Kicktemp GmbH",
"email": "hello@kicktemp.com",
"url": "https://kicktemp.com"
},
"contributors": [
{
"name": "Niels Nübel",
"email": "niels@kicktemp.com"
},
{
"name": "Stefan Wendhausen",
"email": "stefan@kicktemp.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Kicktemp/plg_task_kickmanagearticle/issues"
},
"homepage": "https://github.com/Kicktemp/plg_task_kickmanagearticle#readme",
"buildconfigs": {
"proxy": "http://plg_task_kickmanagearticle.kick4"
},
"placeholder": {
"[UPDATEURL]": "https://kicktemp.shop/download?e=[PACKAGE_NAME]&v=[VERSION]",
"[PROJECT_NAME]": "Kick Manage Article",
"[PACKAGE_NAME]": "plg_task_kickmanagearticle",
"[ALIAS]": "kickmanagearticle",
"[ELEMENT]": "kickmanagearticle",
"[AUTHOR]": "Kicktemp GmbH",
"[AUTHOR_EMAIL]": "hello@kicktemp.com",
"[COPYRIGHT]": "Copyright © 2024 Kicktemp GmbH. All rights reserved.",
"[LICENSE]": "GNU General Public License version 2 or later; see LICENSE.txt",
"[AUTHOR_URL]": "https://kicktemp.com",
"[DATE]": "09/04/2024",
"[PLUGINTYPE]": "task"
},
"devDependencies": {
"archiver": "^5.3.1",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"libxmljs": "1.0.9"
}
}