2019-04-29 07:50:54 +00:00
|
|
|
{
|
2019-10-08 18:11:13 +00:00
|
|
|
"name": "@root/acme",
|
2019-10-08 20:50:53 +00:00
|
|
|
"version": "3.0.0-wip.1",
|
2019-10-02 21:04:54 +00:00
|
|
|
"description": "Free SSL certificates through Let's Encrypt, right in your browser",
|
|
|
|
"homepage": "https://rootprojects.org/acme/",
|
2019-10-08 19:40:01 +00:00
|
|
|
"main": "acme.js",
|
2019-10-04 23:35:59 +00:00
|
|
|
"browser": {
|
|
|
|
"./lib/node/sha2.js": "./lib/browser/sha2.js",
|
|
|
|
"./lib/node/http.js": "./lib/browser/http.js",
|
|
|
|
"./lib/node/ecdsa.js": "./lib/browser/ecdsa.js",
|
|
|
|
"./lib/node/rsa.js": "./lib/browser/rsa.js",
|
|
|
|
"./lib/node/keypairs.js": "./lib/browser/keypairs.js"
|
|
|
|
},
|
2019-10-02 21:04:54 +00:00
|
|
|
"files": [
|
2019-10-08 19:40:01 +00:00
|
|
|
"*.js",
|
2019-10-02 21:04:54 +00:00
|
|
|
"lib",
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2019-10-08 10:33:14 +00:00
|
|
|
"build": "nodex bin/bundle.js",
|
2019-10-02 21:04:54 +00:00
|
|
|
"lint": "jshint lib bin",
|
|
|
|
"test": "node server.js",
|
|
|
|
"start": "node server.js"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://git.coolaj86.com/coolaj86/bluecrypt-acme.js.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"ACME",
|
|
|
|
"Let's Encrypt",
|
|
|
|
"browser",
|
|
|
|
"EC",
|
|
|
|
"RSA",
|
|
|
|
"CSR",
|
|
|
|
"greenlock",
|
|
|
|
"VanillaJS",
|
|
|
|
"ZeroSSL"
|
|
|
|
],
|
|
|
|
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
|
|
|
"license": "MPL-2.0",
|
2019-10-08 10:33:14 +00:00
|
|
|
"dependencies": {
|
2019-10-08 20:50:53 +00:00
|
|
|
"@root/csr": "^1.0.0-wip.0",
|
2019-10-08 18:11:13 +00:00
|
|
|
"@root/encoding": "^1.0.1",
|
2019-10-08 20:50:53 +00:00
|
|
|
"@root/keypairs": "^1.0.0-wip.0"
|
2019-10-08 10:33:14 +00:00
|
|
|
},
|
2019-10-02 21:04:54 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"@root/request": "^1.3.10",
|
|
|
|
"dig.js": "^1.3.9",
|
|
|
|
"dns-suite": "^1.2.12",
|
2019-10-04 23:35:59 +00:00
|
|
|
"dotenv": "^8.1.0",
|
2019-10-08 10:33:14 +00:00
|
|
|
"punycode": "^1.4.1"
|
2019-10-02 21:04:54 +00:00
|
|
|
}
|
2019-04-29 07:50:54 +00:00
|
|
|
}
|