-
Notifications
You must be signed in to change notification settings - Fork 20
/
box.json
67 lines (67 loc) · 2.88 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
{
"name":"ColdBox Debugger",
"author":"Ortus Solutions <[email protected]",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbdebugger/@build.version@/[email protected]@.zip",
"version":"4.4.0",
"slug":"cbdebugger",
"type":"modules",
"homepage":"https://github.com/coldbox-modules/cbdebugger",
"bugs":"https://ortussolutions.atlassian.net/browse/CBDEBUGGER",
"documentation":"https://cbdebugger.ortusbooks.com/",
"repository":{
"type":"git",
"url":"https://github.com/coldbox-modules/cbdebugger"
},
"shortDescription":"The official ColdBox debugger module",
"license":[
{
"type":"Apache2",
"url":"http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"contributors":[
"Curt Gratz <[email protected]",
"Brad Wood <[email protected]>",
"Luis Majano <[email protected]>"
],
"dependencies":{},
"devDependencies":{
"commandbox-cfformat":"*",
"commandbox-docbox":"*",
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*"
},
"ignore":[
"**/.*",
"package-lock.json",
"package.json",
"webpack.config.js",
"build/**",
"node_modules/**",
"resources/**",
"test-harness",
"/server*.json"
],
"testbox":{
"runner":"http://localhost:60299/tests/runner.cfm"
},
"scripts":{
"build:module":"task run taskFile=build/Build.cfc :projectName=`package show slug` :version=`package show version`",
"build:docs":"task run taskFile=build/Build.cfc target=docs :projectName=`package show slug` :version=`package show version`",
"release":"recipe build/release.boxr",
"format":"cfformat run appenders,aspects,handlers,interceptors,models,test-harness/tests/**.cfc,ModuleConfig.cfc --overwrite",
"format:watch":"cfformat watch appenders,aspects,handlers,interceptors,models,test-harness/tests/**.cfc,ModuleConfig.cfc ./.cfformat.json",
"format:check":"cfformat check appenders,aspects,handlers,interceptors,models,test-harness/tests/**.cfc,ModuleConfig.cfc",
"install:dependencies":"install && cd test-harness && install",
"start:lucee":"server start [email protected]",
"start:2018":"server start [email protected]",
"start:2021":"server start [email protected]",
"stop:lucee":"server stop name=cbdebugger-lucee@5",
"stop:2018":"server stop name=cbdebugger-adobe@2018",
"stop:2021":"server stop name=cbdebugger-adobe@2021",
"logs:lucee":"server log name=cbdebugger-lucee@5 --follow",
"logs:2018":"server log name=cbdebugger-adobe@2018 --follow",
"logs:2021":"server log name=cbdebugger-adobe@2021 --follow"
},
"installPaths":{}
}