-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.json
executable file
·53 lines (53 loc) · 2.2 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
{
"name":"ContentBox Modular CMS Site",
"version":"6.0.0-snapshot",
"location":"https://downloads.ortussolutions.com/ortussolutions/contentbox/@version.number@/contentbox-site-@version.number@.zip",
"author":"Ortus Solutions <info@ortussolutions.com>",
"slug":"contentbox-site",
"shortDescription":"A ColdBox site configured and deployed with ContentBox CMS",
"type":"cms",
"keywords":"cms,content management,modular cms",
"homepage":"https://www.contentboxcms.org",
"documentation":"https://contentbox.ortusbooks.com",
"repository":{
"type":"git",
"url":"https://github.com/Ortus-Solutions/ContentBox"
},
"bugs":"https://ortussolutions.atlassian.net/browse/CONTENTBOX",
"createPackageDirectory":false,
"license":[
{
"type":"Apache2",
"url":"http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"contributors":[
"Joel Watson <existdissolve@gmail.com>",
"Brad Wood <bdw429s@gmail.com>",
"Curt Gratz <gratz@computerknowhow.com>"
],
"dependencies":{
"coldbox":"^7.0.0+7",
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*",
"commandbox-migrations":"*",
"contentbox":"be",
"route-visualizer":"^2.0.0+6"
},
"devDependencies":{},
"installPaths":{
"contentbox":"modules/contentbox/",
"route-visualizer":"modules/route-visualizer/"
},
"ignores":[],
"scripts":{
"contentbox:install":"install --force && cd modules/contentbox && install --force",
"contentbox:migrate":"migrate up manager=contentbox",
"contentbox:migrate:up":"run-script contentbox:migrate",
"contentbox:migrate:down":"migrate down manager=contentbox",
"install:2021":"!cfpm install zip,orm,mysql,postgresql,sqlserver,document,feed",
"format":"cfformat run config/,handlers/,models/,modules_app/**/*.cfc,Application.cfc --overwrite",
"format:watch":"cfformat watch config/,handlers/,models/,modules_app/**/*.cfc,Application.cfc ./.cfformat.json",
"format:check":"cfformat check config/**/*.cfc,modules_app/**/*.cfc,modules/contentbox/**/*.cfc,tests/**/*.cfc,Application.cfc"
}
}