-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbox.json
More file actions
61 lines (61 loc) · 2.68 KB
/
Copy pathbox.json
File metadata and controls
61 lines (61 loc) · 2.68 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
58
59
60
61
{
"name":"CB File Storages",
"version":"1.2.0",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbfs/@build.version@/cbfs-@build.version@.zip",
"author":"Ortus Solutions, Corp",
"homepage":"https://github.com/coldbox-modules/cbfs",
"documentation":"https://github.com/coldbox-modules/cbfs",
"repository":{
"type":"git",
"url":"https://github.com/coldbox-modules/cbfs"
},
"bugs":"https://github.com/coldbox-modules/cbfs/issues",
"shortDescription":"This module allows you to abstract filesystems by leveraging a fluent storage API",
"slug":"cbfs",
"type":"modules",
"keywords":"filesystem, storages, s3, cloud storage, java streams, reactive, streaming",
"license":[
{
"type":"Apache2",
"url":"http://www.apache.org/licenses/LICENSE-2.0"
}
],
"contributors":[],
"dependencies":{
"cbstreams":"^2.0",
"s3sdk":"^5.7.1"
},
"devDependencies":{
"commandbox-boxlang":"*",
"commandbox-cfformat":"*",
"commandbox-docbox":"*"
},
"installPaths":{
"cbstreams":"modules/cbstreams/",
"s3sdk":"modules/s3sdk/"
},
"ignore":[
"**/.*",
"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 models,test-harness/tests/**/*.cfc,ModuleConfig.cfc --overwrite ./.cfformat.json",
"format:watch":"cfformat watch models,test-harness/tests/**/*.cfc,ModuleConfig.cfc ./.cfformat.json",
"format:check":"cfformat check models,test-harness/tests/**/*.cfc,ModuleConfig.cfc ./.cfformat.json",
"install:dependencies":"install --force && cd test-harness && install --force",
"start:S3Mock":"!docker run --rm -d --name cbfs-s3-mock -p 9090:9090 -p 9191:9191 -e initialBuckets=cbfs-test -t adobe/s3mock",
"start:lucee":"server start serverConfigFile=server-lucee@5.json",
"start:2021":"server start serverConfigFile=server-adobe@2021.json",
"stop:lucee":"server stop serverConfigFile=server-lucee@5.json",
"stop:2021":"server stop serverConfigFile=server-adobe@2021.json",
"logs:lucee":"server log serverConfigFile=server-lucee@5.json --follow",
"logs:2021":"server log serverConfigFile=server-adobe@2021.json --follow"
}
}