forked from gpickin/coldbox-plugin-BCrypt
-
Notifications
You must be signed in to change notification settings - Fork 3
/
box.json
63 lines (63 loc) · 2.75 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":"BCrypt",
"version":"3.2.0",
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/bcrypt/@build.version@/[email protected]@.zip",
"author":"Ortus Solutions <[email protected]>",
"homepage":"https://github.com/coldbox-modules/bcrypt",
"documentation":"https://github.com/coldbox-modules/bcrypt",
"repository":{
"type":"git",
"url":"https://github.com/coldbox-modules/bcrypt"
},
"license":[
{
"type":"MIT",
"URL":"https://github.com/coldbox-modules/bcrypt/LICENSE"
}
],
"bugs":"https://ortussolutions.atlassian.net/secure/RapidBoard.jspa?projectKey=CCM",
"slug":"BCrypt",
"shortDescription":"A ColdBox module for BCrypt. Creates cryptographically strong (and slow) password hashes.",
"type":"modules",
"contributors":[
"Seth Feldkamp",
"Brad Wood <[email protected]>",
"Luis Majano <[email protected]>",
"Jon Clausen <[email protected]>"
],
"ignore":[
"**/.*",
"test-harness",
"/server*.json"
],
"devDependencies":{
"commandbox-cfformat":"*",
"commandbox-docbox":"*",
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*"
},
"dependencies":{
"cbjavaloader":"^2.0.0"
},
"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`",
"install:dependencies":"install && cd test-harness && install",
"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:lucee" : "server start [email protected]",
"start:2018" : "server start [email protected]",
"start:2021" : "server start [email protected]",
"stop:lucee" : "server stop [email protected]",
"stop:2018" : "server stop [email protected]",
"stop:2021" : "server stop [email protected]",
"logs:lucee" : "server log [email protected] --follow",
"logs:2018" : "server log [email protected] --follow",
"logs:2021" : "server log [email protected] --follow"
}
}