-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@vladmandic/piacme",
"version": "1.0.3",
"description": "Simple ACME/LetsEncrypt HTTP/SSL Certificate Management",
"main": "dist/piacme.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "npm run build && node --unhandled-rejections=strict --trace-warnings --no-deprecation dist/piacme.js",
"build": "esbuild --outdir=dist --target=es2020 --platform=node --format=cjs --color=true --log-level=error --bundle src/piacme.js",
"lint": "eslint src/piacme.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/piacme.git"
},
"keywords": [
"x509",
"csr",
"certificate",
"acme",
"letsencrypt",
"ssl",
"https",
"http2"
],
"author": "Vladimir Mandic <mandic00@live.com>",
"license": "MIT",
"sideEffects": false,
"bugs": {
"url": "https://github.com/vladmandic/piacme/issues"
},
"homepage": "https://github.com/vladmandic/piacme#readme",
"dependencies": {
"@root/acme": "^3.1.0",
"@root/csr": "^0.8.1",
"@root/keypairs": "^0.10.3",
"@root/pem": "^1.0.4",
"@vladmandic/pilogger": "^0.4.6",
"acme-http-01-webroot": "^3.0.0",
"cert2json": "^1.0.12",
"node-forge": "^1.3.1",
"ursa-optional": "^0.10.2"
},
"devDependencies": {
"esbuild": "^0.15.10",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}