-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.json
48 lines (48 loc) · 1.27 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
{
"name": "@MODULE_NAME@",
"version": "@build.version@+@build.number@",
"location": "https://downloads.ortussolutions.com/ortussolutions/boxlang-modules/@MODULE_SLUG@/@build.version@/@MODULE_SLUG@-@build.version@.zip",
"author": "Ortus Solutions",
"homepage": "https://github.com/boxlang-modules/@MODULE_SLUG@",
"documentation": "https://github.com/boxlang-modules/@MODULE_SLUG@",
"repository": {
"type": "git",
"URL": "https://github.com/boxlang-modules/@MODULE_SLUG@"
},
"bugs": "https://github.com/boxlang-modules/@MODULE_SLUG@/issues",
"slug": "@MODULE_SLUG@",
"shortDescription": "Module template for BoxLang modules",
"type": "boxlang-modules",
"keywords": ["boxlang"],
"boxlang": {
"minimumVersion": "1.0.0",
"moduleName": "@MODULE_REGISTERED_NAME@"
},
"private": false,
"license": [
{
"type": "Apache-2.0",
"URL": "https://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"commandbox-cfformat": "*",
"commandbox-docbox": "*",
"commandbox-dotenv": "*",
"commandbox-cfconfig": "*",
"testbox": "*"
},
"ignore": [
"**/.*",
"settings.gradle",
"gradlew.bat",
"gradlew",
"build.gradle",
"/src/**",
"gradle/**"
],
"scripts": {
"setupTemplate": "task run taskFile=src/build/SetupTemplate.cfc",
"onRelease": "publish"
}
}