-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbox.json
More file actions
64 lines (64 loc) · 2.85 KB
/
box.json
File metadata and controls
64 lines (64 loc) · 2.85 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
62
63
64
{
"name":"ColdBox i18n and Localization",
"author":"Ortus Solutions <info@ortussolutions.com>",
"version":"3.6.0",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbi18n/@build.version@/cbi18n-@build.version@.zip",
"slug":"cbi18n",
"type":"modules",
"keywords":"i18n,internationalization,localization,language support",
"homepage":"https://github.com/coldbox-modules/cbi18n",
"documentation":"https://coldbox-i18n.ortusbooks.com/",
"repository":{
"type":"git",
"url":"https://github.com/coldbox-modules/cbi18n"
},
"shortDescription":"This module will enhance your ColdBox applications with i18n capabilities, java/json resource bundles and localization.",
"license":[
{
"type":"Apache2",
"url":"http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"contributors":[
"Brad Wood <bdw429s@gmail.com>",
"Curt Gratz <gratz@computerknowhow.com>",
"Jon Clausen <jon_clausen@silowebworks.com>",
"Wil de Bruin <wil@site4u.nl>"
],
"devDependencies":{
"commandbox-boxlang":"*",
"commandbox-cfformat":"*",
"commandbox-docbox":"*"
},
"dependencies":{
"cbstorages":"^3.0.0"
},
"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`",
"install:dependencies":"install && cd test-harness && install",
"format":"cfformat run helpers,models,test-harness/tests/,ModuleConfig.cfc --overwrite",
"format:watch":"cfformat watch helpers,models,test-harness/tests/,ModuleConfig.cfc ./.cfformat.json",
"format:check":"cfformat check helpers,models,test-harness/tests/,ModuleConfig.cfc ./.cfformat.json",
"start:lucee":"server start serverConfigFile=server-lucee@5.json",
"start:adobe":"server start serverConfigFile=server-adobe@2025.json",
"start:boxlang":"server start serverConfigFile=server-boxlang@1.json",
"stop:lucee":"server stop serverConfigFile=server-lucee@5.json",
"stop:adobe":"server stop serverConfigFile=server-adobe@2025.json",
"stop:boxlang":"server stop serverConfigFile=server-boxlang@1.json",
"logs:lucee":"server log serverConfigFile=server-lucee@5.json --follow",
"logs:adobe":"server log serverConfigFile=server-adobe@2025.json --follow",
"logs:boxlang":"server log serverConfigFile=server-boxlang@1.json --follow"
},
"installPaths":{
"cbstorages":"modules/cbstorages/"
}
}