letsencrypt to greenlock in package.json

This commit is contained in:
Drew Warren 2017-01-17 17:15:43 -07:00
parent 39d8e48d8b
commit 16faafac4d
1 changed files with 11 additions and 7 deletions

View File

@ -1,25 +1,29 @@
{ {
"name": "letsencrypt-cli", "name": "greenlock-cli",
"version": "2.2.0", "version": "2.2.0",
"description": "CLI for node-letsencrypt modeled after the official client", "description": "CLI for node-greenlock modeled after the official client",
"main": "index.js", "main": "index.js",
"bin": { "bin": {
"letsencrypt": "bin/letsencrypt.js", "letsencrypt": "bin/letsencrypt.js",
"letsencrypt-node": "bin/letsencrypt.js" "letsencrypt-node": "bin/letsencrypt.js",
"greenlock": "bin/greenlock.js",
"greenlock-node": "bin/greenlock.js"
}, },
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/Daplie/node-letsencrypt-cli.git" "url": "https://github.com/Daplie/node-greenlock-cli.git"
}, },
"keywords": [ "keywords": [
"node", "node",
"nodejs", "nodejs",
"acme", "acme",
"boulder", "boulder",
"cli",
"letsencrypt", "letsencrypt",
"greenlock",
"le", "le",
"ssl", "ssl",
"https", "https",
@ -29,9 +33,9 @@
"author": "AJ ONeal <aj@daplie.com> (https://daplie.com)", "author": "AJ ONeal <aj@daplie.com> (https://daplie.com)",
"license": "(MIT OR Apache-2.0)", "license": "(MIT OR Apache-2.0)",
"bugs": { "bugs": {
"url": "https://github.com/Daplie/node-letsencrypt-cli/issues" "url": "https://github.com/Daplie/greenlock-cli/issues"
}, },
"homepage": "https://github.com/Daplie/node-letsencrypt-cli", "homepage": "https://github.com/Daplie/greenlock-cli",
"dependencies": { "dependencies": {
"cli": "^0.11.1", "cli": "^0.11.1",
"homedir": "^0.6.0", "homedir": "^0.6.0",
@ -41,7 +45,7 @@
"le-challenge-sni": "^2.0.0", "le-challenge-sni": "^2.0.0",
"le-challenge-standalone": "^2.0.0", "le-challenge-standalone": "^2.0.0",
"le-store-certbot": "^2.0.2", "le-store-certbot": "^2.0.2",
"letsencrypt": "^2.1.8", "greenlock": "^2.1.9",
"localhost.daplie.com-certificates": "^1.2.0", "localhost.daplie.com-certificates": "^1.2.0",
"mkdirp": "^0.5.1" "mkdirp": "^0.5.1"
} }