-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.67 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
{
"name": "pubface",
"version": "1.0.12",
"description": "Resolve public network interfaces for current machine",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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": "npx pkg --compress Brotli package.json && rm -rf package-lock.json && npm install",
"build-dist-fast": "npx pkg --debug 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"
},
"keywords": [],
"author": "Postal Systems OÜ",
"license": "MIT-0",
"repository": {
"type": "git",
"url": "git+https://github.com/postalsys/pubface.git"
},
"bugs": {
"url": "https://github.com/postalsys/pubface/issues"
},
"homepage": "https://github.com/postalsys/pubface",
"bin": {
"pubface": "bin/pubface.js"
},
"dependencies": {
"ipaddr.js": "2.2.0",
"nodemailer": "6.9.15"
},
"devDependencies": {
"pkg": "5.8.1",
"license-report": "6.5.0"
},
"pkg": {
"assets": [
"LICENSE.txt",
"licenses.txt"
],
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-macos-arm64",
"node18-win-x64"
],
"outputPath": "ee-dist"
}
}