-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.97 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "pending-dns",
"version": "1.4.2",
"description": "Lightweight API driven DNS server",
"productTitle": "PendingDNS",
"main": "index.js",
"private": false,
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node server.js",
"lint": "eslint .",
"format": "prettier --write 'lib/**/*.js' 'workers/**/*.js' 'test/**/*.js' '*.js'",
"format:check": "prettier --check 'lib/**/*.js' 'workers/**/*.js' 'test/**/*.js' '*.js'",
"test": "NODE_ENV=test node --test --test-force-exit --test-concurrency=1 test/*.test.js",
"build-source": "rm -rf node_modules && npm install && npm run licenses && rm -rf node_modules && npm ci --omit=dev",
"build-dist-fast": "pkg --debug package.json && npm install",
"build-dist": "pkg --compress Brotli package.json && npm install",
"licenses": "license-report --only=prod --output=table --config license-report-config.json > licenses.txt",
"update": "rm -rf node_modules package-lock.json && ncu -u && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/postalsys/pending-dns.git"
},
"keywords": [
"dns"
],
"author": {
"name": "Andris Reinman",
"email": "andris@postalsys.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/postalsys/pending-dns/issues"
},
"homepage": "https://github.com/postalsys/pending-dns#readme",
"devDependencies": {
"@eslint/eslintrc": "3.3.6",
"@eslint/js": "10.0.1",
"eslint": "10.8.1",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "10.1.8",
"license-report": "6.8.5",
"prettier": "3.9.6"
},
"dependencies": {
"@fidm/x509": "1.2.1",
"@hapi/boom": "10.0.1",
"@hapi/hapi": "21.4.10",
"@hapi/inert": "7.1.2",
"@hapi/vision": "7.0.3",
"@root/acme": "3.1.0",
"@root/csr": "0.8.1",
"@sentry/node": "10.70.0",
"dns2": "3.1.1",
"handlebars": "4.7.9",
"hapi-pino": "13.0.0",
"hapi-swagger": "17.3.2",
"http-proxy": "1.18.1",
"ioredfour": "1.4.2",
"ioredis": "6.0.0",
"ipaddr.js": "2.5.0",
"joi": "17.13.6",
"minimist": "1.2.8",
"nanoid": "3.3.18",
"pem-jwk": "2.0.0",
"pino": "10.3.1",
"punycode": "2.3.1",
"wild-config": "1.7.1"
},
"bin": {
"pending-dns": "bin/pending-dns.js"
},
"pkg": {
"scripts": [
"lib/**/*.js",
"workers/**/*.js"
],
"assets": [
"lib/lua/**/*",
"config/*.pem",
"licenses.txt",
"LICENSE.txt",
"help.txt"
],
"targets": [
"node24-linux-x64",
"node24-macos-x64",
"node24-macos-arm64",
"node24-win-x64"
],
"outputPath": "ee-dist"
}
}