diff --git a/README.md b/README.md index 87734e7..fa80a2a 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,10 @@ built for [ACME.js](https://git.coolaj86.com/coolaj86/acme.js) and [Greenlock.js](https://git.coolaj86.com/coolaj86/greenlock-express.js) A focused, **zero-dependency** library that can do exactly one thing really, really well: - * Generate a Certificate Signing Requests (CSR), and sign it! +| < 300 lines of code | 1.7k gzipped | 4.7k minified | 8.5k with comments | + Need JWK-to-PEM? Try [Rasha.js](https://git.coolaj86.com/coolaj86/rasha.js) Need to generate an EC CSR? Try [ECSDA-CSR.js](https://git.coolaj86.com/coolaj86/ecdsa-csr.js) diff --git a/package.json b/package.json index c4a49b4..8dbed22 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,17 @@ { "name": "rsa-csr", - "version": "1.0.1", + "version": "1.0.2", "description": "💯 A focused, zero-dependency library to generate a Certificate Signing Request (CSR) and sign it!", + "homepage": "https://git.coolaj86.com/coolaj86/rsa-csr.js", "main": "index.js", "bin": { "rsa-csr": "bin/rsa-csr.js" }, + "files": [ + "bin", + "fixtures", + "lib" + ], "directories": { "lib": "lib" },