Comparing version 0.1.0 to 0.1.1
@@ -67,3 +67,3 @@ require('any-promise/register/q'); | ||
var expiry = readLineSync.question( | ||
var expiry = readLineSync.questionInt( | ||
'Specify the JWT token expiry in seconds (defaults to 60 sec): ', | ||
@@ -81,3 +81,3 @@ {defaultInput: 60} | ||
audience: _.trim(audience), | ||
expiry: _.trim(expiry), | ||
expiry: expiry, | ||
privateKey: _.trim(privateKey) | ||
@@ -84,0 +84,0 @@ }; |
{ | ||
"name": "asap-cli", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "A command line utility for generating ASAP (JWT tokens as per the Atlassian Service Authentication Protocol) token and making curl calls with the same.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
18747