forked from Ortus-Solutions/ContentBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.json
83 lines (83 loc) · 3.51 KB
/
box.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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ContentBox Tester Site",
"version": "6.1.0",
"author": "Ortus Solutions <[email protected]>",
"shortDescription": "A tester site for developing the ContentBox Modular CMS",
"type": "cms",
"keywords": "cms,content management,modular cms",
"homepage": "https://www.contentboxcms.org",
"documentation": "https://contentbox.ortusbooks.com",
"repository": {
"type": "git",
"url": "https://github.com/Ortus-Solutions/ContentBox"
},
"bugs": "https://ortussolutions.atlassian.net/browse/CONTENTBOX",
"license": [
{
"type": "Apache2",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"contributors": [
"Joel Watson <[email protected]>",
"Brad Wood <[email protected]>",
"Curt Gratz <[email protected]>"
],
"dependencies": {
"coldbox": "^7.0.0",
"commandbox-dotenv": "*",
"commandbox-cfconfig": "*",
"commandbox-migrations": "^4.0.0"
},
"devDependencies": {
"testbox": "^5.0.0+1",
"commandbox-cfformat": "*",
"commandbox-docbox": "*",
"cbdebugger": "be",
"route-visualizer": "^2.0.0+6"
},
"installPaths": {
"testbox": "testbox/",
"coldbox": "coldbox/",
"cbdebugger": "modules/cbdebugger/",
"route-visualizer": "modules/route-visualizer/"
},
"ignores": [],
"scripts": {
"release": "recipe build/release.boxr",
"build:allDocs": "task run taskFile=build/BuildDocs.cfc :version=`package show version`",
"build:apidocs": "task run taskFile=build/BuildDocs.cfc target=apiDocs :version=`package show version`",
"build:swagger": "task run taskFile=build/BuildDocs.cfc target=swagger :version=`package show version`",
"dbseed:mysql": "task run contentbox/modules/seeders/MSSQL.cfc",
"dbseed:mssal": "task run contentbox/modules/seeders/SeedMySQL.cfc",
"dbseed:postgres": "task run contentbox/modules/seeders/SeedPostgreSQL.cfc",
"format": "cfformat run config/**/*.cfc,modules_app/**/*.cfc,modules/contentbox/**/*.cfc,tests/**/*.cfc,Application.cfc --overwrite",
"format:watch": "cfformat watch config/**/*.cfc,modules_app/**/*.cfc,modules/contentbox/**/*.cfc,tests/**/*.cfc,Application.cfc ./.cfformat.json",
"format:watch:core": "cfformat watch config/**/*.cfc,modules/contentbox/models/**/*.cfc,Application.cfc ./.cfformat.json",
"format:check": "cfformat check config/**/*.cfc,modules_app/**/*.cfc,modules/contentbox/**/*.cfc,tests/**/*.cfc,Application.cfc",
"start:lucee": "server start serverConfigFile='[email protected]' --force",
"start:2018": "server start serverConfigFile='[email protected]' --force",
"start:2021": "server start serverConfigFile='[email protected]' --force",
"start:2023": "server start serverConfigFile='[email protected]' --force",
"log:lucee": "server log [email protected] --follow",
"log:2018": "server log [email protected] --follow",
"log:2021": "server log [email protected] --follow",
"log:2023": "server log [email protected] --follow",
"contentbox:install": "install --force && cd modules/contentbox && install --force",
"contentbox:migrate:create": "migrate create name=${1} manager=contentbox",
"contentbox:migrate": "migrate up manager=contentbox",
"contentbox:migrate:up": "run-script contentbox:migrate",
"contentbox:migrate:down": "migrate down manager=contentbox",
"contentbox:migrate:fresh": "migrate fresh manager=contentbox"
},
"testbox": {
"runner": [
{
"default": "http://127.0.0.1:8589/tests/runner.cfm"
},
{
"api": "http://127.0.0.1:8589/tests/runner-api.cfm"
}
]
}
}