forked from coldbox-modules/totp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.json
39 lines (39 loc) · 1.59 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
{
"name":"totp",
"version":"0.0.0",
"author":"Eric Peterson <eric@elpete.com>",
"location":"forgeboxStorage",
"homepage":"https://github.com/coldbox-modules/totp",
"documentation":"https://github.com/coldbox-modules/totp",
"repository":{
"type":"git",
"URL":"https://github.com/coldbox-modules/totp"
},
"bugs":"https://github.com/coldbox-modules/totp/issues",
"slug":"totp",
"shortDescription":"A CFML implementation of Time-based One-time Passwords",
"description":"A CFML implementation of Time-based One-time Passwords",
"type":"modules",
"dependencies":{
"CFzxing":"^1.1.0"
},
"devDependencies":{
"testbox":"stable"
},
"installPaths":{
"testbox":"testbox/",
"CFzxing":"modules/CFzxing/"
},
"scripts":{
"format":"cfformat run ModuleConfig.cfc,models/**/*.cfc,tests/specs/**/*.cfc,tests/resources/app/handlers/**/*.cfc,tests/resources/app/config/**/*.cfc --overwrite",
"format:check":"cfformat check ModuleConfig.cfc,models/**/*.cfc,tests/specs/**/*.cfc,tests/resources/app/handlers/**/*.cfc,tests/resources/app/config/**/*.cfc --verbose",
"format:watch":"cfformat watch ModuleConfig.cfc,models/**/*.cfc,tests/specs/**/*.cfc,tests/resources/app/handlers/**/*.cfc,tests/resources/app/config/**/*.cfc",
"onServerInstall": "#listfirst ${interceptData.installDetails.version} '.' | #comparenocase '2021' | assertTrue || run-script install:2021",
"install:2021": "cfpm install image"
},
"ignore":[
"**/.*",
"test",
"tests"
]
}