-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathbox.json
57 lines (57 loc) · 1.81 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
56
57
{
"name":"qb",
"version":"11.0.3",
"author":"Eric Peterson",
"homepage":"https://github.com/coldbox-modules/qb",
"documentation":"https://github.com/coldbox-modules/qb",
"location":"forgeboxStorage",
"scripts":{
"generateAPIDocs":"touch .tmp && rm .tmp --recurse --force && mkdir .tmp --cd && mkdir apidocs && cd .. && docbox generate mapping=qb excludes=test|ModuleConfig strategy-outputDir=.tmp/apidocs strategy-projectTitle=qb",
"commitAPIDocs":"run-script generateAPIDocs && !git add docs/apidocs/* && !git commit -m 'Updated API Docs'",
"format":"cfformat run models/**/*.cfc,tests/resources/**/*.cfc,tests/specs/**/*.cfc --overwrite",
"format:check":"cfformat check models/**/*.cfc,tests/resources/**/*.cfc,tests/specs/**/*.cfc",
"bx-modules:install":"install bx-compat-cfml@be,bx-esapi"
},
"repository":{
"type":"git",
"URL":"https://github.com/coldbox-modules/qb"
},
"bugs":"https://github.com/coldbox-modules/qb/issues",
"slug":"qb",
"shortDescription":"A query builder for the rest of us",
"type":"modules",
"keywords":[
"ORM",
"query",
"SQL"
],
"private":false,
"projectURL":"https://github.com/coldbox-modules/qb",
"license":[
{
"type":"MIT",
"URL":"https://github.com/coldbox-modules/qb/LICENSE"
}
],
"dependencies":{
"cbpaginator":"^2.4.0"
},
"devDependencies":{
"testbox":"be"
},
"installPaths":{
"testbox":"testbox/",
"cbpaginator":"modules/cbpaginator/"
},
"ignore":[
"**/.*",
"test",
"tests",
"docs/**/*.*",
"server.json"
],
"testbox":{
"runner":"http://localhost:7777/tests/runner.cfm",
"verbose":false
}
}