Upgrade to node.js 10

This commit is contained in:
David Stephens 2018-04-28 00:33:34 +01:00
parent aa8e0587f3
commit 476e8f2f0c
3 changed files with 2668 additions and 5 deletions

View File

@ -2,7 +2,7 @@
{ # this ensures the entire script is downloaded before execution { # this ensures the entire script is downloaded before execution
ENIGMA_NODE_VERSION=${ENIGMA_NODE_VERSION:=8} ENIGMA_NODE_VERSION=${ENIGMA_NODE_VERSION:=10}
ENIGMA_INSTALL_DIR=${ENIGMA_INSTALL_DIR:=$HOME/enigma-bbs} ENIGMA_INSTALL_DIR=${ENIGMA_INSTALL_DIR:=$HOME/enigma-bbs}
ENIGMA_SOURCE=${ENIGMA_SOURCE:=https://github.com/NuSkooler/enigma-bbs.git} ENIGMA_SOURCE=${ENIGMA_SOURCE:=https://github.com/NuSkooler/enigma-bbs.git}
TIME_FORMAT=`date "+%Y-%m-%d %H:%M:%S"` TIME_FORMAT=`date "+%Y-%m-%d %H:%M:%S"`

2663
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -24,7 +24,7 @@
"dependencies": { "dependencies": {
"async": "^2.5.0", "async": "^2.5.0",
"binary-parser": "^1.3.2", "binary-parser": "^1.3.2",
"buffers": "NuSkooler/node-buffers", "buffers": "github:NuSkooler/node-buffers",
"bunyan": "^1.8.12", "bunyan": "^1.8.12",
"exiftool": "^0.0.3", "exiftool": "^0.0.3",
"fs-extra": "^5.0.0", "fs-extra": "^5.0.0",
@ -39,12 +39,12 @@
"mime-types": "^2.1.17", "mime-types": "^2.1.17",
"minimist": "1.2.x", "minimist": "1.2.x",
"moment": "^2.20.1", "moment": "^2.20.1",
"nodemailer": "^4.4.1",
"node-pty": "^0.7.4", "node-pty": "^0.7.4",
"nodemailer": "^4.4.1",
"rlogin": "^1.0.0", "rlogin": "^1.0.0",
"sane": "^2.2.0", "sane": "^2.2.0",
"sanitize-filename": "^1.6.1", "sanitize-filename": "^1.6.1",
"sqlite3": "^3.1.9", "sqlite3": "^4.0.0",
"sqlite3-trans": "^1.2.0", "sqlite3-trans": "^1.2.0",
"ssh2": "^0.5.5", "ssh2": "^0.5.5",
"temptmp": "^1.0.0", "temptmp": "^1.0.0",
@ -56,6 +56,6 @@
}, },
"devDependencies": {}, "devDependencies": {},
"engines": { "engines": {
"node": ">=6.9.2" "node": ">=10"
} }
} }