forked from gpickin/itb2020-fluentAPI
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbox.json
67 lines (67 loc) · 2.61 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":"FluentAPI",
"version":"1.0.0",
"author":"Ortus Solutions",
"slug":"fluentapi",
"type":"mvc",
"homepage":"https://github.com/lmajano/modern-functional-fluent-cfml-rest",
"documentation":"https://github.com/lmajano/modern-functional-fluent-cfml-rest",
"repository":{
"type":"git",
"url":"https://github.com/lmajano/modern-functional-fluent-cfml-rest"
},
"bugs":"https://github.com/lmajano/modern-functional-fluent-cfml-rest/issues",
"shortDescription":"Demo repo for functional APIs",
"contributors":[
"Luis Majano <[email protected]>",
"Gavin Pickin <[email protected]>"
],
"ignore":[],
"devDependencies":{
"relax":"*",
"route-visualizer":"*",
"testbox":"be",
"commandbox-dotenv":"*",
"commandbox-docbox":"*",
"commandbox-cfconfig":"*",
"commandbox-cfformat":"*",
"commandbox-migrations":"*"
},
"dependencies":{
"coldbox":"be",
"cbswagger":"^3",
"cbvalidation":"^4",
"cors":"^3",
"mementifier":"^3",
"cbdebugger":"^4",
"cbSwaggerUI":"^1.2.1"
},
"installPaths":{
"coldbox":"coldbox/",
"relax":"modules/relax/",
"testbox":"testbox/",
"cbSwagger":"modules/cbSwagger/",
"cbvalidation":"modules/cbvalidation/",
"route-visualizer":"modules/route-visualizer/",
"cors":"modules/cors/",
"mementifier":"modules/mementifier/",
"cbdebugger":"modules/cbdebugger/",
"cbSwaggerUI":"modules/cbSwaggerUI/"
},
"testbox":{
"runner":"http://localhost:60146/tests/runner.cfm"
},
"scripts":{
"start:adobe":"server start serverConfigFile=server-adobe.json --force",
"start:boxlang":"server start serverConfigFile=server-boxlang.json --force --debug",
"lint":"cflint **.cf* --text --html --json --!exitOnError --suppress",
"format":"cfformat run config,Application.cfc,modules_app/**/*.cfc,tests/specs/**/*.cfc --overwrite --verbose",
"format:watch":"cfformat watch config,Application.cfc,modules_app/**/*.cfc,tests/specs/**/*.cfc ./.cfformat.json",
"test:v1":"testbox run directory=tests/specs/integration/api-v1",
"test:v2":"testbox run directory=tests/specs/integration/api-v2",
"test:v3":"testbox run directory=tests/specs/integration/api-v3",
"test:v4":"testbox run directory=tests/specs/integration/api-v4",
"test:v5":"testbox run directory=tests/specs/integration/api-v5",
"test:v6":"testbox run directory=tests/specs/integration/api-v6"
}
}