acme.js/package.json

64 行
1.4 KiB
JSON
Raw パーマリンク 通常表示 履歴

2018-03-15 06:41:00 +00:00
{
2019-10-08 18:11:13 +00:00
"name": "@root/acme",
2021-05-24 10:05:49 +00:00
"version": "3.1.1",
2019-10-21 19:45:47 +00:00
"description": "Free SSL certificates for Node.js and Browsers. Issued via Let's Encrypt",
2019-10-02 21:04:54 +00:00
"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/native.js": "./lib/browser.js",
2019-10-04 23:35:59 +00:00
"./lib/node/sha2.js": "./lib/browser/sha2.js",
2019-10-25 11:20:44 +00:00
"./lib/node/http.js": "./lib/browser/http.js",
"./lib/node/client-user-agent.js": "./lib/browser/client-user-agent.js"
2019-10-04 23:35:59 +00:00
},
2019-09-04 01:31:09 +00:00
"files": [
2019-10-08 19:40:01 +00:00
"*.js",
2019-09-04 01:31:09 +00:00
"lib",
2019-10-26 06:12:14 +00:00
"bin",
"scripts",
2019-10-02 21:04:54 +00:00
"dist"
2019-09-04 01:31:09 +00:00
],
2019-06-13 07:55:25 +00:00
"scripts": {
2019-10-21 19:45:47 +00:00
"build": "node_xxx bin/bundle.js",
2019-10-02 21:04:54 +00:00
"lint": "jshint lib bin",
2019-09-04 01:31:09 +00:00
"postinstall": "node scripts/postinstall",
2019-10-02 21:04:54 +00:00
"test": "node server.js",
"start": "node server.js"
2019-06-13 07:55:25 +00:00
},
"repository": {
"type": "git",
"url": "https://git.rootprojects.org/root/acme.js.git"
2019-06-13 07:55:25 +00:00
},
"keywords": [
"ACME",
2019-10-02 21:04:54 +00:00
"Let's Encrypt",
"EC",
"RSA",
"CSR",
2019-10-21 19:45:47 +00:00
"browser",
2019-10-02 21:04:54 +00:00
"greenlock",
"VanillaJS",
"ZeroSSL"
2019-06-13 07:55:25 +00:00
],
2019-10-02 21:04:54 +00:00
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
2019-06-13 07:55:25 +00:00
"license": "MPL-2.0",
"dependencies": {
"@root/csr": "^0.8.1",
2019-10-08 18:11:13 +00:00
"@root/encoding": "^1.0.1",
"@root/keypairs": "^0.10.0",
2019-10-15 11:01:52 +00:00
"@root/pem": "^1.0.4",
"@root/request": "^1.6.1",
2019-10-15 11:01:52 +00:00
"@root/x509": "^0.7.2"
2019-06-14 07:32:54 +00:00
},
"devDependencies": {
2019-10-02 21:04:54 +00:00
"dig.js": "^1.3.9",
2019-10-21 19:45:47 +00:00
"dns-suite": "^1.2.13",
2019-10-04 23:35:59 +00:00
"dotenv": "^8.1.0",
2019-10-16 00:36:54 +00:00
"punycode": "^1.4.1"
},
"trulyOptionalDependencies": {
2019-10-15 11:01:52 +00:00
"eslint": "^6.5.1",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
2019-06-13 07:55:25 +00:00
}
2018-03-15 06:41:00 +00:00
}