-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
84 lines (84 loc) · 2.63 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
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
{
"name": "pending-dns",
"version": "1.2.5",
"description": "Lightweight API driven DNS server",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "grunt",
"build-source": "rm -rf node_modules package-lock.json && npm install && npm run licenses && rm -rf node_modules package-lock.json && npm install --production && rm -rf package-lock.json",
"build-dist-fast": "npx pkg --debug package.json && rm -rf package-lock.json && npm install",
"build-dist": "npx pkg --compress Brotli package.json && rm -rf package-lock.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": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/postalsys/pending-dns/issues"
},
"homepage": "https://github.com/postalsys/pending-dns#readme",
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "9.1.0",
"grunt": "1.6.1",
"grunt-cli": "1.4.3",
"grunt-eslint": "24.3.0",
"license-report": "6.5.0"
},
"dependencies": {
"@bugsnag/js": "7.22.4",
"@fidm/x509": "1.2.1",
"@hapi/boom": "10.0.1",
"@hapi/hapi": "21.3.3",
"@hapi/inert": "7.1.0",
"@hapi/joi": "17.1.1",
"@hapi/vision": "7.0.3",
"@root/acme": "3.1.0",
"@root/csr": "0.8.1",
"dns2": "2.1.0",
"handlebars": "4.7.8",
"hapi-pino": "12.1.0",
"hapi-swagger": "17.2.1",
"http-proxy": "1.18.1",
"ioredfour": "1.3.0-ioredis-07",
"ioredis": "5.3.2",
"ipaddr.js": "2.1.0",
"minimist": "1.2.8",
"node-rsa": "1.1.1",
"pem-jwk": "2.0.0",
"pino": "8.19.0",
"punycode": "2.3.1",
"shortid": "2.2.16",
"uuid": "9.0.1",
"wild-config": "1.7.1"
},
"bin": {
"pending-dns": "bin/pending-dns.js"
},
"pkg": {
"assets": [
"licenses.txt",
"LICENSE.txt",
"help.txt"
],
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-macos-arm64",
"node18-win-x64"
],
"outputPath": "ee-dist"
}
}