-
-
Notifications
You must be signed in to change notification settings - Fork 171
/
box.json
82 lines (82 loc) · 3.35 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
{
"name":"ColdBox Platform",
"version":"7.4.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":"*",
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*",
"commandbox-cfformat":"*"
},
"scripts":{
"release":"recipe build/release.boxr",
"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 build/Build.cfc run :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@1.json' --force",
"start:2021":"server start serverConfigFile='server-adobe@2021.json' --force",
"start:2023":"server start serverConfigFile='server-adobe@2023.json' --force",
"stop:lucee":"server stop serverConfigFile='server-lucee@5.json' --force",
"stop:boxlang":"server stop serverConfigFile='server-boxlang@1.json' --force",
"stop:2021":"server stop serverConfigFile='server-adobe@2021.json' --force",
"stop:2023":"server stop serverConfigFile='server-adobe@2023.json' --force",
"log:lucee":"server log coldbox-lucee@5 --follow",
"log:boxlang":"server log coldbox-boxlang@1 --follow",
"log:2021":"server log coldbox-adobe@2021 --follow",
"log:2023":"server log coldbox-adobe@2023 --follow"
},
"installPaths":{
"testbox":"testbox/",
"cbproxies":"system/async/cbproxies/"
}
}