-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
box.json
63 lines (63 loc) · 2.66 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
58
59
60
61
62
63
{
"name":"Elasticsearch for the Coldbox Framework",
"author":"Ortus Solutions <[email protected]",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbelasticsearch/@build.version@/[email protected]@[email protected]@.zip",
"version":"3.4.2",
"slug":"cbelasticsearch",
"type":"modules",
"homepage":"https://cbelasticsearch.ortusbooks.com",
"bugs":"https://github.com/coldbox-modules/cbox-elasticsearch/issues",
"documentation":"https://cbelasticsearch.ortusbooks.com",
"repository":{
"type":"git",
"url":"https://github.com/coldbox-modules/cbox-elasticsearch"
},
"shortDescription":"Elasticsearch Module for the Coldbox Framework",
"license":[
{
"type":"Apache2",
"url":"http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"contributors":[
"Jon Clausen <[email protected]>",
"Eric Peterson <[email protected]>",
"Michael Born <[email protected]>",
"Grant Copley <[email protected]>",
"Andreas Eppinger <[email protected]>",
"Andrew Davis <[email protected]>",
"Luis Majano <[email protected]>"
],
"dependencies":{
"hyper":"^5.0.1"
},
"ignore":[
"**/.*",
"docs",
"tests",
"test-harness",
"build",
"*/.md",
"book.json",
"docker-compose.yml",
"server-*.json",
"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`",
"release":"recipe build/release.boxr",
"format":"cfformat run tests/specs,models,ModuleConfig.cfc --overwrite",
"format:watch":"cfformat watch tests/specs,models,ModuleConfig.cfc ./.cfformat.json",
"format:check":"cfformat check tests/specs,models,ModuleConfig.cfc",
"install:dependencies":"install --force && cd test-harness && install --force",
"start:elasticsearch7":"!docker run --name cbelasticsearch-es8 -d -p '9200:9200' -e 'discovery.type=single-node' -e 'xpack.security.enabled=false' elasticsearch:7.17.2",
"start:elasticsearch":"!docker run --name cbelasticsearch-es8 -d -p '9200:9200' -e 'discovery.type=single-node' -e 'xpack.security.enabled=false' elasticsearch:8.4.2"
},
"installPaths":{
"hyper":"modules/hyper/"
}
}