forked from ColdBox/coldbox-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.json
84 lines (84 loc) · 3.53 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
84
{
"name":"ColdBox Platform",
"version":"7.3.0",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox/@build.version@/[email protected]@.zip",
"author":"Ortus Solutions <[email protected]>",
"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 <[email protected]>",
"Curt Gratz <[email protected]>"
],
"ignore":[
"**/.*",
"tests",
"apidocs",
"testbox"
],
"testbox":{
"runner":[
{
"default":"http://localhost:8599/tests/runner.cfm"
}
]
},
"dependencies":{
"cbproxies":"^1.0.1+13"
},
"devDependencies":{
"testbox":"^5.1.0+2",
"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='[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",
"stop:lucee":"server stop serverConfigFile='[email protected]' --force",
"stop:2018":"server stop serverConfigFile='[email protected]' --force",
"stop:2021":"server stop serverConfigFile='[email protected]' --force",
"stop:2023":"server stop serverConfigFile='[email protected]' --force",
"log:lucee":"server log coldbox-lucee@5 --follow",
"log:2018":"server log coldbox-adobe@2018 --follow",
"log:2021":"server log coldbox-adobe@2021 --follow",
"log:2023":"server log coldbox-adobe@2023 --follow",
"cfpm":"echo '\".engine/acf2021/WEB-INF/cfusion/bin/cfpm.sh\"' | run",
"cfpm:install":"echo '\".engine/adobe2021/WEB-INF/cfusion/bin/cfpm.sh\" install ${1}' | run"
},
"installPaths":{
"testbox":"testbox/",
"cbproxies":"system/async/cbproxies/"
}
}