-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
95 lines (95 loc) · 3.7 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "polyglot-v2",
"version": "2.2.11",
"description": "UDI Polyglot Version 2",
"bin": {
"polyglot-v2": "bin/polyglot-v2.js"
},
"main": "bin/polyglot-v2.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node bin/polyglot-v2",
"start:prod": "NODE_ENV=production npm start",
"start:dev": "NODE_ENV=development PKG=false nodemon .",
"build:armv7": "node_modules/.bin/pkg -t node16-linux-armv7 package.json -o binaries/polyglot-v2-linux-armv7; chmod +x binaries/polyglot-v2-linux-armv7; cd binaries; GZIP=-9 tar cvzf polyglot-v2-linux-armv7.tar.gz polyglot-v2-linux-armv7 --remove-files",
"build:armv6": "pkg -t node9.2.1-linux-armv6 package.json -o binaries/polyglot-v2-linux-armv6; chmod +x binaries/polyglot-v2-linux-armv6; cd binaries; GZIP=-9 tar cvzf polyglot-v2-linux-armv6.tar.gz polyglot-v2-linux-armv6 --remove-files",
"build:x64": "time pkg package.json -o binaries/polyglot-v2-linux-x64; chmod +x binaries/polyglot-v2-linux-x64; cd binaries; tar -I 'gzip -9' -cvf polyglot-v2-linux-x64.tar.gz polyglot-v2-linux-x64 --remove-files",
"build:x64test": "pkg -t latest-linux-x64 package.json -o ~/polyglot/polyglot-v2-linux-x64; chmod +x ~/polyglot/polyglot-v2-linux-x64",
"build:x86": "pkg -t latest-linux-x86 package.json -o binaries/polyglot-v2-linux-x86; chmod +x binaries/polyglot-v2-linux-x86; cd binaries; GZIP=-9 tar cvzf polyglot-v2-linux-x86.tar.gz polyglot-v2-linux-x86 --remove-files",
"build:freebsd": "node_modules/.bin/pkg -t node16-freebsd-x64 package.json -o binaries/polyglot-v2-freebsd-x64; chmod +x binaries/polyglot-v2-freebsd-x64; cd binaries; GZIP=-9 tar -cvzf polyglot-v2-freebsd-x64.tar.gz polyglot-v2-freebsd-x64; rm polyglot-v2-freebsd-x64",
"build:osx": "pkg -t latest-osx-x64 package.json -o binaries/polyglot-v2-osx-x64; chmod +x binaries/polyglot-v2-osx-x64; cd binaries; GZIP=-9 tar cvzf polyglot-v2-osx-x64.tar.gz polyglot-v2-osx-x64; rm polyglot-v2-osx-x64",
"patchrelease": "npm version patch",
"prerelease": "npm version prerelease",
"postversion": "git push && git push --tags && npm publish",
"update:check": "ncu",
"update:run": "ncu -u; npm install"
},
"dependencies": {
"aedes": "^0.47.0",
"archiver": "^3.1.0",
"bcryptjs": "^2.4.0",
"body-parser": "^1.19.0",
"compression": "^1.7.0",
"cors": "^2.8.0",
"decompress": "^4.2.0",
"decompress-targz": "^4.1.0",
"dotenv": "^8.1.0",
"express": "^4.18.0",
"express-fileupload": "^1.4.0",
"fs-extra": "^8.1.0",
"ip": "^1.1.5",
"jsonwebtoken": "^9.0.0",
"lodash.isequal": "^4.5.0",
"minimist": "^1.2.0",
"mongoose": "^5.13.0",
"mqtt": "^4.3.0",
"multer": "^1.4.0",
"npm": "^8.11.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"pkg": "^5.7.0",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"request-promise-native": "^1.0.0",
"selfsigned": "^2.0.0",
"split-ca": "^1.0.0",
"tail": "^2.0.0",
"unzipper": "^0.10.0",
"websocket-stream": "^5.5.0",
"winston": "^3.2.0",
"winston-daily-rotate-file": "^4.5.0",
"xml2json-light": "^1.0.0"
},
"keywords": [
"udi",
"polyglot",
"nodeserver"
],
"author": "Einstein.42 ([email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UniversalDevicesInc/polyglot-v2.git"
},
"devDependencies": {},
"pkg": {
"assets": "public/**/*",
"targets": [
"node16"
]
},
"nodemonConfig": {
"ignore": [
"angular-src/*",
"test/*",
"profile/*",
"public/*",
"scripts/*"
]
},
"features": {
"noticeByKey": "on",
"customParamsDoc": "on",
"typedParams": "on"
}
}