v3.0.1: reduce dependencies, update docs
This commit is contained in:
parent
602a4c012a
commit
aeca3c069a
|
@ -1,6 +1,4 @@
|
||||||
# [greenlock-store-fs](https://git.coolaj86.com/coolaj86/greenlock-store-fs.js)
|
# [greenlock-store-fs](https://git.coolaj86.com/coolaj86/greenlock-store-fs.js) | A [Root](https://rootprojects.org) project
|
||||||
|
|
||||||
| A [Root](https://rootprojects.org) project |
|
|
||||||
|
|
||||||
A keypair and certificate storage strategy for Greenlock v2.7+ (and v3).
|
A keypair and certificate storage strategy for Greenlock v2.7+ (and v3).
|
||||||
The (much simpler) successor to le-store-certbot.
|
The (much simpler) successor to le-store-certbot.
|
||||||
|
|
2
index.js
2
index.js
|
@ -8,7 +8,7 @@ var PromiseA = getPromise();
|
||||||
var readFileAsync = PromiseA.promisify(fs.readFile);
|
var readFileAsync = PromiseA.promisify(fs.readFile);
|
||||||
var writeFileAsync = PromiseA.promisify(fs.writeFile);
|
var writeFileAsync = PromiseA.promisify(fs.writeFile);
|
||||||
// TODO replace with zero-depenency version
|
// TODO replace with zero-depenency version
|
||||||
var mkdirpAsync = PromiseA.promisify(require('mkdirp'));
|
var mkdirpAsync = PromiseA.promisify(require('@root/mkdirp'));
|
||||||
|
|
||||||
|
|
||||||
// How Storage Works in Greenlock: High-Level Call Stack
|
// How Storage Works in Greenlock: High-Level Call Stack
|
||||||
|
|
|
@ -1,21 +1,13 @@
|
||||||
{
|
{
|
||||||
"name": "le-store-json",
|
"name": "greenlock-store-fs",
|
||||||
"version": "1.0.0",
|
"version": "3.0.1",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minimist": {
|
"@root/mkdirp": {
|
||||||
"version": "0.0.8",
|
"version": "1.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
"resolved": "https://registry.npmjs.org/@root/mkdirp/-/mkdirp-1.0.0.tgz",
|
||||||
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
"integrity": "sha512-hxGAYUx5029VggfG+U9naAhQkoMSXtOeXtbql97m3Hi6/sQSRL/4khKZPyOF6w11glyCOU38WCNLu9nUcSjOfA=="
|
||||||
},
|
|
||||||
"mkdirp": {
|
|
||||||
"version": "0.5.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
|
||||||
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
|
||||||
"requires": {
|
|
||||||
"minimist": "0.0.8"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"safe-replace": {
|
"safe-replace": {
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
|
|
10
package.json
10
package.json
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"name": "greenlock-store-fs",
|
"name": "greenlock-store-fs",
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"description": "A file-based certificate store for greenlock that supports wildcards.",
|
"description": "A file-based certificate store for greenlock that supports wildcards.",
|
||||||
"homepage": "https://git.coolaj86.com/coolaj86/le-store-fs.js",
|
"homepage": "https://git.rootprojects.org/root/greenlock-store-fs.js",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
"test": "tests"
|
"test": "tests"
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.coolaj86.com/coolaj86/le-store-fs.js.git"
|
"url": "https://git.rootprojects.org/root/greenlock-store-fs.js.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"greenlock",
|
"greenlock",
|
||||||
|
@ -22,10 +22,10 @@
|
||||||
"store",
|
"store",
|
||||||
"database"
|
"database"
|
||||||
],
|
],
|
||||||
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
"author": "AJ ONeal <solderjs@gmail.com> (https://solderjs.com/)",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"mkdirp": "^0.5.1",
|
"@root/mkdirp": "^1.0.0",
|
||||||
"safe-replace": "^1.1.0"
|
"safe-replace": "^1.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue