-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.82 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
{
"name": "pubface",
"version": "1.1.5",
"description": "Resolve public network interfaces for current machine",
"main": "index.js",
"scripts": {
"test": "node --test 'test/**/*.test.js'",
"format": "prettier --write .",
"lint": "eslint .",
"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.4.0",
"nodemailer": "9.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@yao-pkg/pkg": "6.21.0",
"eslint": "^10.6.0",
"license-report": "6.8.5",
"prettier": "^3.9.4"
},
"pkg": {
"assets": [
"LICENSE.txt",
"licenses.txt"
],
"targets": [
"node24-linux-x64",
"node24-macos-x64",
"node24-macos-arm64",
"node24-win-x64"
],
"outputPath": "ee-dist"
}
}