-
-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathbox.json
More file actions
80 lines (80 loc) · 3.33 KB
/
box.json
File metadata and controls
80 lines (80 loc) · 3.33 KB
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
{
"name":"ColdBox Platform Development Framework",
"version":"8.1.0",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox/@build.version@/coldbox-@build.version@.zip",
"author":"Ortus Solutions <info@ortussolutions.com>",
"slug":"coldbox",
"packageDirectory":"coldbox",
"type":"mvc",
"keywords":"mvc,hmvc,conventions,coldbox",
"homepage":"https://www.coldbox.org",
"documentation":"https://coldbox.ortusbooks.com/",
"repository":{
"type":"git",
"url":"https://github.com/coldbox/coldbox-platform"
},
"bugs":"https://ortussolutions.atlassian.net/browse/COLDBOX",
"shortDescription":"A conventions based HMVC development framework",
"license":[
{
"type":"Apache2",
"url":"http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"contributors":[
"Brad Wood <bdw429s@gmail.com>",
"Curt Gratz <gratz@computerknowhow.com>"
],
"ignore":[
"**/.*",
"tests",
"apidocs",
"testbox"
],
"testbox":{
"runner":[
{
"default":"http://localhost:8599/tests/runner.cfm"
}
]
},
"dependencies":{
"cbproxies":"^1"
},
"devDependencies":{
"testbox":"be",
"commandbox-boxlang":"*",
"commandbox-cfformat":"*"
},
"installPaths":{
"testbox":"testbox/",
"cbproxies":"system/async/cbproxies/"
},
"scripts":{
"tests":"task run build/Build.cfc runTests",
"tests:integration":"task run build/Build.cfc runTests integration",
"tests:mvc":"task run build/Build.cfc runTests mvc",
"tests:cachebox":"task run build/Build.cfc runTests cachebox",
"tests:logbox":"task run build/Build.cfc runTests logbox",
"tests:wirebox":"task run build/Build.cfc runTests wirebox",
"tests:core":"task run build/Build.cfc runTests core",
"tests:async":"task run build/Build.cfc runTests async",
"apidocs":"task run build/Build.cfc buildDocs",
"build":"task run taskFile=build/Build.cfc :docs=false",
"format":"cfformat run system/**/*.cfc,tests/specs/**/*.cfc --overwrite",
"format:watch":"cfformat watch system/**/*.cfc,tests/specs/**/*.cfc ./.cfformat.json",
"format:check":"cfformat check system/**/*.cfc,tests/specs/**/*.cfc ./.cfformat.json",
"start:lucee":"server start serverConfigFile='server-lucee@5.json' --force",
"start:boxlang":"server start serverConfigFile='server-boxlang-cfml@1.json' --force",
"start:boxlangprime":"server start serverConfigFile='server-boxlang@1.json' --force",
"start:adobe":"server start serverConfigFile='server-adobe@2025.json' --force",
"stop:lucee":"server stop serverConfigFile='server-lucee@5.json' --force",
"stop:boxlang":"server stop serverConfigFile='server-boxlang-cfml@1.json' --force",
"stop:boxlangprime":"server stop serverConfigFile='server-boxlang@1.json' --force",
"stop:adobe":"server stop serverConfigFile='server-adobe@2025.json' --force",
"log:lucee":"server log coldbox-lucee@5 --follow",
"log:boxlang":"server log coldbox-boxlang-cfml@1 --follow",
"log:boxlangprime":"server log coldbox-boxlang@1 --follow",
"log:adobe":"server log coldbox-adobe@2025 --follow"
}
}