-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
box.json
65 lines (65 loc) · 2.38 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
{
"name":"TestBox",
"version":"6.0.1",
"location":"https://downloads.ortussolutions.com/ortussolutions/testbox/@build.version@/[email protected]@.zip",
"author":"Ortus Solutions <[email protected]>",
"slug":"testbox",
"type":"testing",
"keywords":"testing,xunit,bdd,testbox,mxunit,tdd",
"homepage":"https://www.ortussolutions.com/products/testbox",
"documentation":"https://testbox.ortusbooks.com",
"repository":{
"type":"git",
"url":"https://github.com/Ortus-Solutions/TestBox"
},
"bugs":"https://ortussolutions.atlassian.net/browse/TESTBOX",
"shortDescription":"A BDD and xUnit testing framework with Mocking Goodness",
"license":[
{
"type":"Apache2",
"url":"https://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"contributors":[
"Brad Wood <[email protected]>",
"Curt Gratz <[email protected]>"
],
"ignore":[
"**/.*"
],
"testbox":{
"runner":"http://localhost:49616/tests/runner.cfm",
"watchers":[
"system/**.cfc",
"tests/**.cfc"
],
"watchDelay":"250"
},
"dependencies":{
"cbstreams":"^2.0.0",
"mockdatacfc":"^3",
"globber":"^3.1.3"
},
"devDependencies":{
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*",
"commandbox-cfformat":"*"
},
"installPaths":{
"cbstreams":"system/modules/cbstreams/",
"mockdatacfc":"system/modules/mockdatacfc/",
"globber":"system/modules/globber/"
},
"scripts":{
"release":"recipe build/release.boxr",
"format":"cfformat run system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc --overwrite",
"format:check":"cfformat check system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc ./.cfformat.json",
"format:watch":"cfformat watch system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc ./.cfformat.json",
"start:lucee":"server start [email protected]",
"start:2021":"server start [email protected]",
"start:2023":"server start [email protected]",
"log:lucee":"server log testbox-lucee@5 --follow",
"log:2021":"server log testbox-adobe@2021 --follow",
"log:2023":"server log testbox-adobe@2023 --follow"
}
}