forked from cfwheels/cfwheels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
box-base.json
53 lines (53 loc) · 1.73 KB
/
box-base.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":"CFWheels Base Template",
"version":"@build.version@",
"author":"CFWheels Core Team and Community, repackaged by Peter Amiri",
"shortDescription":"CFWheels MVC Framework Base Template",
"location":"forgeboxStorage",
"slug":"cfwheels-base-template",
"createPackageDirectory":false,
"type":"cfwheels-templates",
"keywords":[
"mvc",
"rails",
"wheels",
"cfwheels",
"core"
],
"homepage":"https://cfwheels.org/",
"documentation":"https://docs.cfwheels.org/",
"repository":{
"type":"git",
"URL":"https://github.com/cfwheels/cfwheels"
},
"bugs":"https://github.com/cfwheels/cfwheels/issues",
"contributors":[
"Peter Amiri <[email protected]>"
],
"ignore":[],
"devDependencies":{
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*",
"commandbox-cfformat":"*"
},
"installPaths":{
"cfwheels":"wheels/"
},
"dependencies":{
"cfwheels":"@build.version@"
},
"private":false,
"license":[
{
"type":"Apache License 2.0",
"URL":"https://github.com/cfwheels/cfwheels/blob/master/LICENSE"
}
],
"scripts":{
"postPublish":"!git push --follow-tags",
"postInstall":"pathExists .env || cp env.example .env && mv env.example .env.example",
"format":"cfformat run config/,controllers/,events/,files/,global/,miscellaneous/,models/,tests/,views/,*.cfc --overwrite",
"format:check":"cfformat check config/,controllers/,events/,files/,global/,miscellaneous/,models/,tests/,views/,*.cfc",
"format:watch":"cfformat watch path='config/,controllers/,events/,files/,global/,miscellaneous/,models/,tests/,views/,*.cfc' settingsPath='.cfformat.json'"
}
}