Install async and commander

This commit is contained in:
mmcw-dev 2017-10-27 13:28:06 -04:00
parent 5cdd191f35
commit 7cb27e7bea
2 changed files with 27 additions and 2 deletions

23
package-lock.json generated
View File

@ -1,5 +1,26 @@
{
"name": "v2f",
"version": "1.0.1",
"lockfileVersion": 1
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"async": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/async/-/async-2.5.0.tgz",
"integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==",
"requires": {
"lodash": "4.17.4"
}
},
"commander": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz",
"integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ=="
},
"lodash": {
"version": "4.17.4",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4="
}
}
}

View File

@ -13,7 +13,11 @@
"runtime": {
"ignoreFlags": true,
"framework": "nodejs",
"version": "8.6.0"
"version": "8.7.0"
}
},
"dependencies": {
"async": "^2.5.0",
"commander": "^2.11.0"
}
}