Files
certd/packages/core/acme-client/package.json

75 lines
2.2 KiB
JSON
Raw Normal View History

2023-01-29 14:44:10 +08:00
{
"name": "@certd/acme-client",
"description": "Simple and unopinionated ACME client",
2023-05-24 17:30:42 +08:00
"private": false,
2023-01-29 14:44:10 +08:00
"author": "nmorsman",
2026-03-31 23:57:25 +08:00
"version": "1.39.8",
2024-11-12 12:15:06 +08:00
"type": "module",
"module": "scr/index.js",
2023-01-29 14:44:10 +08:00
"main": "src/index.js",
"types": "types/index.d.ts",
2023-01-29 14:44:10 +08:00
"license": "MIT",
"homepage": "https://github.com/publishlab/node-acme-client",
"engines": {
2024-09-07 11:40:45 +08:00
"node": ">= 18"
2023-01-29 14:44:10 +08:00
},
"files": [
"src",
"types"
],
"dependencies": {
2026-03-31 23:57:25 +08:00
"@certd/basic": "^1.39.8",
"@peculiar/x509": "^1.11.0",
"asn1js": "^3.0.5",
2025-12-29 14:39:01 +08:00
"axios": "^1.9.0",
"debug": "^4.3.5",
"http-proxy-agent": "^7.0.2",
2024-10-03 22:03:49 +08:00
"https-proxy-agent": "^7.0.5",
2024-11-14 00:18:04 +08:00
"lodash-es": "^4.17.21",
"node-forge": "^1.3.1",
"punycode.js": "^2.3.1"
2023-01-29 14:44:10 +08:00
},
"devDependencies": {
"@types/node": "^20.14.10",
2025-03-14 01:17:37 +08:00
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"eslint": "^8.57.0",
2024-11-14 00:18:04 +08:00
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.29.1",
2024-11-14 00:18:04 +08:00
"eslint-plugin-prettier": "^4.2.1",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.6.0",
"nock": "^13.5.4",
2024-11-08 23:50:14 +08:00
"prettier": "^2.8.8",
"tsd": "^0.31.1",
2024-11-14 00:18:04 +08:00
"typescript": "^5.4.2"
2023-01-29 14:44:10 +08:00
},
"scripts": {
"build-docs": "jsdoc2md src/client.js > docs/client.md && jsdoc2md src/crypto/index.js > docs/crypto.md && jsdoc2md src/crypto/forge.js > docs/forge.md",
"lint": "eslint .",
"lint-types": "tsd",
2023-01-29 14:44:10 +08:00
"prepublishOnly": "npm run build-docs",
2025-05-06 00:32:11 +08:00
"test": "mocha -t 60000 \"test/setup.js\" \"test/**/*.spec.js\"",
2025-10-07 21:45:09 +08:00
"pub": "npm publish",
2026-02-18 23:16:13 +08:00
"compile": "echo '1'"
2023-01-29 14:44:10 +08:00
},
"repository": {
"type": "git",
"url": "https://github.com/publishlab/node-acme-client"
},
"keywords": [
"acme",
"client",
"lets",
"encrypt",
"acmev2",
"boulder"
],
"bugs": {
"url": "https://github.com/publishlab/node-acme-client/issues"
2023-05-24 17:41:38 +08:00
},
2026-03-31 23:59:12 +08:00
"gitHead": "de0ae14544f1c3da4923dddc6a1a3bea4db295e7"
2023-01-29 14:44:10 +08:00
}