A package.json

This commit is contained in:
Ryan Burnette 2019-04-04 16:10:18 -04:00
commit 8138ec74ca
1 changed files with 35 additions and 0 deletions

35
package.json Normal file
View File

@ -0,0 +1,35 @@
{
"name": "le-store-sequelize",
"version": "1.0.0",
"description": "A Sequelize-based certificate store for greenlock that supports wildcards.",
"homepage": "https://git.coolaj86.com/ryanburnette/le-store-sequelize.js",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "node tests"
},
"repository": {
"type": "git",
"url": "https://git.coolaj86.com/ryanburnette/le-store-sequelize.js.git"
},
"keywords": [
"greenlock",
"json",
"keypairs",
"certificates",
"store",
"database",
"sequelize"
],
"contributors": [
"Ryan Burnette <ryan.burnette@gmail.com> (https://ryanburnette.com/)",
"AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)"
],
"license": "MPL-2.0",
"dependencies": {
"sequelize": "^5.2.11",
"sqlite3": "^4.0.6"
}
}