-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbox.json
More file actions
88 lines (88 loc) · 4.21 KB
/
Copy pathbox.json
File metadata and controls
88 lines (88 loc) · 4.21 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name":"cbmongodb",
"version":"4.1.0",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbmongodb/@build.version@/cbmongodb-@build.version@.zip",
"author":"Ortus Solutions <info@ortussolutions.com>",
"homepage":"https://github.com/coldbox-modules/cbmongodb",
"changelog":"https://github.com/coldbox-modules/cbmongodb/blob/master/changelog.md",
"documentation":"https://github.com/coldbox-modules/cbmongodb/wiki",
"repository":{
"type":"git",
"url":"https://github.com/coldbox-modules/cbmongodb"
},
"bugs":"https://github.com/coldbox-modules/cbmongodb",
"shortDescription":"A Coldbox Module and Virtual Entity Service for MongoDB",
"slug":"cbmongodb",
"type":"modules",
"keywords":"nosql,mongo,mongodb,sdk",
"engines":[
{
"type":"lucee",
"version":">5"
},
{
"type":"adobe",
"version":">2021"
}
],
"license":[
{
"type":"Apache2",
"url":"http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"contributors":[
"Sana Ullah <sanaullah73@gmail.com>"
],
"dependencies":{
"cbjavaloader":"stable",
"mongodb-legacy-driver":"jar:https://search.maven.org/remotecontent?filepath=org/mongodb/mongodb-driver-legacy/4.9.1/mongodb-driver-legacy-4.9.1.jar",
"mongodb-bson":"jar:https://search.maven.org/remotecontent?filepath=org/mongodb/bson/4.9.1/bson-4.9.1.jar",
"mongodb-driver-core":"jar:https://search.maven.org/remotecontent?filepath=org/mongodb/mongodb-driver-core/4.9.1/mongodb-driver-core-4.9.1.jar",
"mongodb-driver-sync":"jar:https://search.maven.org/remotecontent?filepath=org/mongodb/mongodb-driver-sync/4.9.1/mongodb-driver-sync-4.9.1.jar",
"javaxt-core":"jar:https://www.javaxt.com/maven/javaxt/javaxt-core/1.7.8/javaxt-core-1.7.8.jar"
},
"installPaths":{
"cbjavaloader":"modules/cbjavaloader/",
"mongodb-legacy-driver":"lib/mongodb-legacy-driver/",
"mongodb-bson":"lib/mongodb-bson/",
"mongodb-driver-core":"lib/mongodb-driver-core/",
"mongodb-driver-sync":"lib/mongodb-driver-sync/",
"slf4j-api":"lib/slf4j-api/",
"javaxt-core":"lib/javaxt-core/"
},
"devDependencies":{
"commandbox-boxlang":"*",
"commandbox-cfformat":"*",
"commandbox-docbox":"*"
},
"ignore":[
"**/.*",
"test-harness",
"/server*.json"
],
"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`",
"install:dependencies":"install --force && cd test-harness && install --force",
"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-cfml@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-cfml@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-cfml@1.json",
"logs:lucee":"server log serverConfigFile=server-lucee@5.json --follow",
"logs:2023":"server log serverConfigFile=server-adobe@2023.json --follow",
"forget:lucee":"server forget serverConfigFile=server-lucee@5.json",
"forget:2023":"server forget serverConfigFile=server-adobe@2023.json",
"forget:boxlang":"server forget serverConfigFile=server-boxlang-cfml@1.json"
},
"testbox":{
"runner":"http://localhost:60299/tests/runner.cfm"
}
}