forked from Ortus-Solutions/TestBox
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbox.json
More file actions
57 lines (57 loc) · 2.17 KB
/
box.json
File metadata and controls
57 lines (57 loc) · 2.17 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
{
"name":"TestBox",
"version":"4.4.0",
"location":"https://downloads.ortussolutions.com/ortussolutions/testbox/@build.version@/testbox-@build.version@.zip",
"author":"Ortus Solutions <info@ortussolutions.com>",
"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 <bdw429s@gmail.com>",
"Curt Gratz <gratz@computerknowhow.com>"
],
"ignore":[
"**/.*"
],
"testbox":{
"runner":"http://localhost:49616/tests/runner.cfm",
"watchers":[
"system/**.cfc",
"tests/**.cfc"
],
"watchDelay":"250"
},
"dependencies":{
"cbstreams":"^1.5.0",
"mockdatacfc":"^3.3.0+22"
},
"installPaths":{
"cbstreams":"system/modules/cbstreams/",
"mockdatacfc":"system/modules/mockdatacfc/"
},
"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 serverConfigFile=server-lucee@5.json",
"start:2016":"server start serverConfigFile=server-adobe@2016.json",
"start:2018":"server start serverConfigFile=server-adobe@2018.json",
"start:2021":"server start serverConfigFile=server-adobe@2021.json",
"cfpm":"echo '\".engine/adobe2021/WEB-INF/cfusion/bin/cfpm.sh\" install ${1}' | run"
}
}