-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbox.json
55 lines (55 loc) · 2.54 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
{
"name" : "@MODULE_NAME@",
"version" : "1.0.0",
"location" : "https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/@MODULE_SLUG@/@build.version@/@MODULE_SLUG@-@build.version@.zip",
"author" : "Ortus Solutions <info@ortussolutions.com>",
"homepage" : "https://github.com/coldbox-modules/@MODULE_SLUG@",
"documentation" : "https://github.com/coldbox-modules/@MODULE_SLUG@",
"repository" : { "type" : "git", "url" : "https://github.com/coldbox-modules/@MODULE_SLUG@" },
"bugs" : "https://github.com/coldbox-modules/@MODULE_SLUG@",
"shortDescription" : "Description goes here",
"slug" : "@MODULE_SLUG@",
"type" : "modules",
"keywords":"",
"license" : [
{ "type" : "Apache2", "url" : "http://www.apache.org/licenses/LICENSE-2.0.html" }
],
"contributors" : [
],
"dependencies" :{
},
"devDependencies" :{
"commandbox-boxlang":"*",
"commandbox-cfformat":"*",
"commandbox-docbox":"*",
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*"
},
"ignore":[
"**/.*",
"test-harness",
"/server*.json"
],
"scripts":{
"setupTemplate": "task run taskFile=build/SetupTemplate.cfc",
"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",
"release":"recipe build/release.boxr",
"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:boxlang" : "server start serverConfigFile=server-boxlang@1.json",
"start:lucee" : "server start serverConfigFile=server-lucee@5.json",
"start:2023" : "server start serverConfigFile=server-adobe@2023.json",
"stop:boxlang" : "server stop serverConfigFile=server-boxlang@1.json",
"stop:lucee" : "server stop serverConfigFile=server-lucee@5.json",
"stop:2023" : "server stop serverConfigFile=server-adobe@2023.json",
"logs:boxlang" : "server log serverConfigFile=server-boxlang@1.json --follow",
"logs:lucee" : "server log serverConfigFile=server-lucee@5.json --follow",
"logs:2023" : "server log serverConfigFile=server-adobe@2023.json --follow"
},
"testbox":{
"runner":"http://localhost:60299/tests/runner.cfm"
}
}