mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
feat: restore Node 8 support (#1832)
This restore a support I removed in Verdaccio 4.5.0 This means nothing if you were not using Node v8, this support should be removed in a major release.
This commit is contained in:
parent
6b1553c257
commit
56b677a35a
2 changed files with 5 additions and 5 deletions
10
package.json
10
package.json
|
@ -21,8 +21,8 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@verdaccio/commons-api": "9.4.0",
|
"@verdaccio/commons-api": "9.4.0",
|
||||||
"@verdaccio/local-storage": "9.4.0",
|
"@verdaccio/local-storage": "9.5.1",
|
||||||
"@verdaccio/readme": "9.4.0",
|
"@verdaccio/readme": "9.5.1",
|
||||||
"@verdaccio/streams": "9.5.0",
|
"@verdaccio/streams": "9.5.0",
|
||||||
"@verdaccio/ui-theme": "1.7.1",
|
"@verdaccio/ui-theme": "1.7.1",
|
||||||
"JSONStream": "1.3.5",
|
"JSONStream": "1.3.5",
|
||||||
|
@ -47,11 +47,11 @@
|
||||||
"marked": "0.8.2",
|
"marked": "0.8.2",
|
||||||
"mime": "2.4.4",
|
"mime": "2.4.4",
|
||||||
"minimatch": "3.0.4",
|
"minimatch": "3.0.4",
|
||||||
"mkdirp": "1.0.4",
|
"mkdirp": "0.5.5",
|
||||||
"mv": "2.1.1",
|
"mv": "2.1.1",
|
||||||
"pkginfo": "0.4.1",
|
"pkginfo": "0.4.1",
|
||||||
"request": "2.87.0",
|
"request": "2.87.0",
|
||||||
"semver": "7.3.2",
|
"semver": "6.3.0",
|
||||||
"verdaccio-audit": "9.5.0",
|
"verdaccio-audit": "9.5.0",
|
||||||
"verdaccio-htpasswd": "9.4.1"
|
"verdaccio-htpasswd": "9.4.1"
|
||||||
},
|
},
|
||||||
|
@ -133,7 +133,7 @@
|
||||||
"build:docker": "docker build -t verdaccio/verdaccio:local . --no-cache"
|
"build:docker": "docker build -t verdaccio/verdaccio:local . --no-cache"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10",
|
"node": ">=8",
|
||||||
"npm": ">=5"
|
"npm": ">=5"
|
||||||
},
|
},
|
||||||
"preferGlobal": true,
|
"preferGlobal": true,
|
||||||
|
|
BIN
yarn.lock
BIN
yarn.lock
Binary file not shown.
Loading…
Reference in a new issue